How to take take "Home -" off the home page tab and search engines
-
Hi I have been reading this posts https://www.ads-software.com/support/topic/ifeature-how-to-remove-the-home-title-from-the-homepage?replies=8 Hoever, not helping me much.. My site https://reforest.com/ and I”m would like to remove Home – from my home tab.. I found code in header
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php if (is_home () ) { bloginfo('name'); echo " - "; bloginfo('description'); } elseif (is_category() ) {single_cat_title(); echo " - "; bloginfo('name'); } elseif (is_single() || is_page() ) {single_post_title(); echo " - "; bloginfo('name'); } elseif (is_search() ) {bloginfo('name'); echo " search results: "; echo esc_html($s); } else { wp_title('',true); }?></title>
However I’m not sure what I need to do to remove “Home -”
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to take take "Home -" off the home page tab and search engines’ is closed to new replies.