Kirki: shortcode field

Created on 6 Oct 2017  ·  2Comments  ·  Source: kirki-framework/kirki

which Field type do you think can take shortcode and then print it in a required area like. I tried many field type, but none worked.

get_theme_mod('kirki_one');

Most helpful comment

You have to call the the output code with the do_shortcode() function, like:

$my_text_field = get_theme_mod( 'kirki_one', '' );
echo do_shortcode( $my_text_field);

Text, textarea and editor fields work with this approach.

All 2 comments

You have to call the the output code with the do_shortcode() function, like:

$my_text_field = get_theme_mod( 'kirki_one', '' );
echo do_shortcode( $my_text_field);

Text, textarea and editor fields work with this approach.

very nice sir. it worked like a charm.

Was this page helpful?
0 / 5 - 0 ratings