Reply To: Problem with copyright text

Home Forums Support Problem with copyright text Reply To: Problem with copyright text

Home Forums Support Problem with copyright text Reply To: Problem with copyright text

#213910
Tom
Lead Developer
Lead Developer

You may have to add it using a function then, as for whatever reason the Customizer isn’t liking the syntax of that shortcode.

add_action( 'generate_credits','generate_add_copyright_shortcodes' );
function generate_add_copyright_shortcodes()
{
    echo do_shortcode( '[your_shortcode]' );
}