I would appreciate some feedback about my ideas of improving my SEO with my wordpress theme.
The way my website works now is: add my site name to the google search and my ranking increase to first spots, otherwise it is possible that I aint on the first 5 pages.
I am currently using zDark as my wordpress theme becouse I like the look of it.
I think that it severly harms my google ranking though becouse it has h1 tag as site name, h2 tag as site description, h2 tag as post name etc.
Here is what I found when checking the theme:
It is also h2 tags in archive.php, search.php but think these 2 might be irrelevant since it is only when searching / viewing archive.
Should I rewrite or switch theme?
If I rewrite I think I should:
Remove h1 and h2 in site name and description. (This would look really bad though. Should try replacing it with a image instead of text "logo")
I should probably also remove the h2 tags from comments.php, since it is no purpose to rank for the text they show.
I should also change so my post titles are h1, is that single.php or index.php?
It might be good to remove h2 tags from sidebar.php and functions.php also, not sure though.
The way my website works now is: add my site name to the google search and my ranking increase to first spots, otherwise it is possible that I aint on the first 5 pages.
I am currently using zDark as my wordpress theme becouse I like the look of it.
I think that it severly harms my google ranking though becouse it has h1 tag as site name, h2 tag as site description, h2 tag as post name etc.
Here is what I found when checking the theme:
Code:
header.php
<div id="header-title">
<h1>||||<a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name') ?></a></h1>
<h2><?php bloginfo('description'); ?></h2>
</div>
Code:
comments.php
<h2 id="comments"><?php comments_number('0', '1', '%' );?> Responses.</h2>
<h2 class="nocomments">Comments are closed.</h2>
<h2><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h2>
Code:
sidebar.php
<h2>Categories</h2>
<h2>Archives</h2>
<h2>Tag Cloud</h2>
<h2>Recent Posts</h2>
Code:
index.php
<div class="postinfo">
<h2><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
</div>
Code:
single.php
<div class="single-title"><h2><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2></div>
Code:
functions.php
<?php if ( function_exists('register_sidebars') )
register_sidebars(array(
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
Should I rewrite or switch theme?
If I rewrite I think I should:
Remove h1 and h2 in site name and description. (This would look really bad though. Should try replacing it with a image instead of text "logo")
I should probably also remove the h2 tags from comments.php, since it is no purpose to rank for the text they show.
I should also change so my post titles are h1, is that single.php or index.php?
It might be good to remove h2 tags from sidebar.php and functions.php also, not sure though.