• Hi-
    I’m wondering the best way to remove “Home” from the homepage without using display:none. I don’t want my SEO to be affected. Or does display:none not affect SEO much?

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Google honours display:none; by ignoring that block of content but since there’s going to be very little SEO juice in the word “Home”, I don’t think that matters.

    Phil

    (@owendevelopment)

    You mean the page title on homepage?

    I save the page without a title in the backend. ie, My home page has no page title.

    By default, WordPress will list it at the top of all your pages in the backend so you know where it is.

    Other ways include setting a php logic in page.php with something like:

    <?php if ( is_front_page() ) { ?><?php } else { ?>
    <h1><?php the_title(); ?></h1>
    <?php } ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove "Home" title from Homepage’ is closed to new replies.