Example #1
0
 function widget($args, $instance)
 {
     extract($args);
     echo "\n\t\t\t" . $before_widget;
     //Load the main function
     echo nrelate_popular(true);
     echo "\n\t\t\t" . $after_widget;
 }
Example #2
0
/**
 * nrelate popular shortcode
 *
 * @since 0.1
 */
function nrelate_popular_shortcode($atts)
{
    extract(shortcode_atts(array("float" => 'left', "width" => '100%'), $atts));
    return '<div class="nr-mp-shortcode" style="float:' . $float . ';width:' . $width . ';\\">' . nrelate_popular(true) . '</div>';
}