How Do I Add This Short Code to WordPress Title [dyna dynami=”cittiess”]?

I am in need little help not knowing what to do this is why am here to get guidiance from you.

I am trying to add my wordpress shortcode to the page title below is the shortcode am using:

Read More
[dyna dynami="cittiess"]

But, it’s not working; it shows [dyna dynami="cittiess"] rather then spun text.

This short code works in the content area but its not working in the title area kindly tell me what edits I should make as I am new to this please cheers.
Any solutions? Cheers.

Related posts

1 comment

  1. Short codes does not work in title by default. So if you want to enable short codes in title then you need to put this code in your functions.php file:

    add_filter( 'the_title', 'do_shortcode' );
    

Comments are closed.