How do I remove ‘Home’ from homepage title?
You can add a check to see if the current page is the home page, and if so skip adding the page title. This would make the final code look like this: <title><?php global $page, $paged; // Add the page title if not the front page if ( is_front_page() ) { wp_title( ‘|’, true, ‘right’ … Read more