To enable shortcodes in WordPress excerpts you have to add this to your active theme’s (hopefully a child theme) functions.php
file:
add_filter( 'the_excerpt' , 'shortcode_unautop' ); add_filter( 'the_excerpt' , 'do_shortcode' ); |
To enable shortcodes in WordPress excerpts you have to add this to your active theme’s (hopefully a child theme) functions.php
file:
add_filter( 'the_excerpt' , 'shortcode_unautop' ); add_filter( 'the_excerpt' , 'do_shortcode' ); |