H1 in wordpress

kazamiza22

Registered Member
Joined
Oct 6, 2011
Messages
79
Reaction score
4
is there a plugin to put a wordpress posts title in all posts with H1 code ?
 
Use the "kitchen sink" icon in Wordpress when editting your page(its on the wordpress toolbar), then hit the drop down where it says Paragraph and you can select H1. It'll change all font to H1 size.
 
is there a plugin to put a wordpress posts title in all posts with H1 code ?

Just change them on the code, it's easy.
WP admin > Appearance > Editor > Single.php

look for
Code:
<?php the_title();?>
and enclosed it with <h1></h1>

click update and you're done!
 
Just change them on the code, it's easy.
WP admin > Appearance > Editor > Single.php

look for
Code:
<?php the_title();?>
and enclosed it with <h1></h1>

click update and you're done!

This is the proper way, and also see if you have page.php file and edit the title there also. single.php is for posts and page.php is for pages. All depends on the theme currently used.
 
Back
Top