Is there a way to enable shortcodes in text saved in the customizer and retrieved using get_theme_mod?
I'm guessing there's a filter in a similar manner to enabling shortcodes in widgets.
Is there a way to enable shortcodes in text saved in the customizer and retrieved using get_theme_mod?
I'm guessing there's a filter in a similar manner to enabling shortcodes in widgets.
Share Improve this question asked Apr 27, 2016 at 14:44 mistertaylormistertaylor 6411 gold badge6 silver badges20 bronze badges1 Answer
Reset to default 4To enable shortcodes in text widgets add a filter like that:
add_filter( 'widget_text', 'do_shortcode' );
You can pass every string to do_shortcode()
including get_theme_mod()
calls.
echo do_shortcode( get_theme_mod( 'theme_setting' ) );