Titles not showing!
-
Yesterday someone very kindly wrote a bit of code [mod: link to that topic: https://www.ads-software.com/support/topic/how-can-i-make-the-homepage-title-different-from-the-navigation?replies=14 ] for me to change my page title to being different from the navigation title on my home page. It worked but I just noticed that the titles of all the other pages have disappeared. Would someone be able to look at the code and see if something is missing or needs to be added?
function my_set_title($title) { if (is_front_page()) $mytitle = "Welcome to Equine Sites"; if (in_the_loop()) return $mytitle; else return $title; } add_filter('the_title', 'my_set_title');
It is in the function.php. Originally it was is_home but because my site homepage is set as front page I changed it to is_front_page – it didn’t work with is_home. My site is https://www.equinesites.co.uk
Thank you!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Titles not showing!’ is closed to new replies.