get primary title using shortcode
-
Hi first of all thanks for this amazing plugin, I can’t explain how much this is helpful plugin for me.
we can get the current post secondary title using this shortcode- [secondary_title]
but what if we want to get the primary title? which shortcode we can use? please help.
——————————————————
function post_title_shortcode(){
return get_the_title();
}
add_shortcode(‘post_title’,’post_title_shortcode’);
————————————————————–
I added this code in my theme’s function.php and then using shorcode [post_title]
but this is adding full title (primary + Secondary).
I want to add only primary title using shortcode. Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘get primary title using shortcode’ is closed to new replies.