I have a WordPress Shortcode that displays the page title, but I need now to exclude specific words form the Page Title
For example, sometimes I have in the title words like Best or Top
For example, if the page title is Best City in California
shortcode needs to show ( City in California )
This is my code on how to display the title
function post_title_shortcode(){
return get_the_title();
}
add_shortcode('page_title','post_title_shortcode');
Thank You
2
Answers
Write some code in your shortcode handler to adjust the text of the title. This kind of thing might work.
It seems easy. Inside the function post_title_shortcode do something similar: