Dash, hyphen in website title
-
I’m having trouble removing the dash from in front of our site’s title.
https://www.pinellashousing.com
It appears in tabbed browsing and in Google search results. I’ve already checked the page’s title in general settings, and I don’t have SEO by Yoast plugin installed, so I think it is somewhere here, in the head.php:
<title> <?php if (function_exists('is_tag') && is_tag()) { single_tag_title("Tag Archive for ""); echo '" - '; } elseif (is_archive()) { wp_title(''); echo ' Archive - '; } elseif (is_search()) { echo 'Search for "'.wp_specialchars($s).'" - '; } elseif (!(is_404()) && (is_single()) || (is_page())) { wp_title(''); echo ' - '; } elseif (is_404()) { echo 'Not Found - '; } if (is_home()) { bloginfo('name'); echo ' - '; bloginfo('description'); } else { bloginfo('name'); } if ($paged>1) { echo ' - page '. $paged; } ?> </title>
Can somebody please help me sort that out so that I can remove the dash in our site’s title? Thanks in advance.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Dash, hyphen in website title’ is closed to new replies.