Multiple h1 on pages are bad for SEO

  • Author
    Posts
  • #63735

    If you enable header titles for Posts or Pages etc. you get multiple h1 on the pages. The second h1 gets hidden by css statement display:none. This works for users but not for SEO. Both h1 (which are the same) are used by google which has a bad effect on SEO.

    Instead of hiding the second h1 by CSS I would recommend to only place the title if the function kahuna_header_title_check() is false:

    <?php if ( !kahuna_header_title_check() ) {
    the_title(‘<h1 class=”entry-title singular-title” ‘ . cryout_schema_microdata(‘entry-title’, 0) . ‘>’, ‘</h1>’);
    } ?>

    #63957
    Zed
    Cryout Creations mastermind

    This will be fixed in the next theme update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Multiple h1 on pages are bad for SEO’ is closed to new replies.