How can I get rid of the <h1 id="site-title">
edit header.php;
change this line:
<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
to:
<?php $heading_tag = 'div'; ?>
Thanks – that got rid of it from the first page. Do I have to do something with the next line to get rid of it on other pages ?
please define exactly which h1 you want to get rid of – it sounded as if you were targeting h1#site-title only.
can you post a link to your site?
have you searched through the limited number of template files?
Sorry, I hadn’t looked closely enough. Only the first page had site-title, all others have
<h1 class=”entry-title”>pagename </h1>
– that’s what I’d now like to get rid of.
Site is blacklandsalpacas.co.uk.
look in loop.php, loop-single.php and loop-page.php
Thanks for the pointer. I realised this was only happening on Pages (not Posts) so in the section
<?php if ( is_front_page() ) { ?>
<h2 class=”entry-title”><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class=”entry-title”><?php the_title(); ?></h1>
<?php } ?>
in loop-page.php, I deleted the
<?php } else { ?>
<h1 class=”entry-title”><?php the_title(); ?></h1>
– and it seems to have worked. Is that correct, or might I have damaged something else ?