1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// Enable shortcodes in text widgets add_filter('widget_text', 'do_shortcode'); // Create Shortcode function wpm_shortcode_func( $atts ) { ob_start (); ?> <?php echo $atts['text'] ?> <?php $response = ob_get_contents(); ob_end_clean(); return $response; } add_shortcode( 'wpm_shortcode', 'wpm_shortcode_func' ); |
And past it to Text widget
1 |
[wpm_shortcode text="test"] |