Seo Title Tag WordPress

Konsep SEO menampilkan H1 untuk blog title di homepage; dan  single post menampilkan H1 untuk post title (blog title jadi h2).  caranya :

file Header.php

<h1><a href=”<?php echo get_option(‘home’); ?>/” title=”<?php bloginfo(‘name’); ?>”><?php bloginfo(‘name’); ?></a></h1>
<div><?php bloginfo(‘description’); ?></div>

ganti menjadi:

<?php if(is_single() OR is_page()) {
// On single post pages and static pages we use this code
?>
<h2><a href=”<?php echo get_option(‘home’); ?>/”><?php bloginfo(‘name’); ?></a></h1>
<div><?php bloginfo(‘description’); ?></div>
<?php }
else {
// On home page and archive style pages we use this code
?>
<h1><a href=”<?php echo get_option(‘home’); ?>/”><?php bloginfo(‘name’); ?></a></h1>
<div><?php bloginfo(‘description’); ?></div>
<?php } ?>

File single.php

<h2><?php the_title(); ?></h2>

ganti menjadi:

<h1><?php the_title(); ?></h1>

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>