Adding H1 tags to posts
-
Okay – try this again as my last attempt dissappeared on me – so if two of these posts show up…;)
Trying to add H1 tags to all my posts and homepage. The problem is, everywhere I read it says to “change the h2 tag to h1” – usually in the page.php or single.php files. Looking in those files – and my index.php, header.php – I don’t have any “H” tags.
I’m going to paste the page.php and single.php below and a link to my site – if anyone can help, just tell me what file these “h” tags are in, I can fiddle with it and get it done – but I can’t find them!
Thanks
Rob
https://hitaco.infoPAGE.PHP —-
<?php get_header(); ?> <div id="main-content" class="clearfix"> <div id="left-area"> <?php get_template_part('includes/breadcrumbs','page'); ?> <div id="entries"> <div class="entry post clearfix"> <?php get_template_part('loop','page'); ?> </div> <!-- end .entry --> <?php if (get_option('aggregate_show_pagescomments') == 'on') comments_template('', true); ?> </div> <!-- end #entries --> </div> <!-- end #left-area --> <?php get_sidebar(); ?> <?php get_footer(); ?> SINGLE.PHP ----- <?php get_header(); ?> <div id="main-content" class="clearfix"> <div id="left-area"> <?php get_template_part('loop','single'); ?> </div> <!-- end #left-area --> <?php get_sidebar(); ?> <?php get_footer(); ?>
[Please post code & markup between backticks or use the code button. Your posted code has now been permanently damaged by the forum’s parser.]
- The topic ‘Adding H1 tags to posts’ is closed to new replies.