Friday 26 December 2014

Short Code in Template file

// Use shortcode in a PHP file (outside the post editor).
echo do_shortcode( '[gallery]' );


// Use shortcodes in text widgets.
add_filter( 'widget_text', 'do_shortcode' );


// Store the short code in a variable.
 
$var = do_shortcode( '[gallery]' );
echo $var;

No comments:

Post a Comment