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