Forum Replies Created
-
Author
-
ocramParticipant
Hello, I have found how to work title with shortcodes.
add_filter( ‘single_post_title’, ‘do_shortcode’ ); //Thisone you need for the hirachy
if( !is_admin() ) {
add_filter( ‘the_title’, function( $title ) {
return do_shortcode($title);
} );
} // This one for the title same 🙂Thanks for help 🙂
ocramParticipantQRadu
I dont user any plugin for this, I use this:
add_filter( ‘single_post_title’, ‘do_shortcode’ );
But I see it only in the history…
Attachments:
You must be logged in to view attached files.ocramParticipant@Kieran_SQ
Ok, Thanks. Did I have to write to any e-mail? because this is a public ticket.ocramParticipant@Kieran_SQ
I have alredy a Code where i can View the Shortcode in title but its only Work without kleo. I cant view the Output on in the “kleo post” from Visual Composer where i can list Posts and on the Post. I See it only on the hierarchy. -
AuthorPosts