Wordpress SEO Friendly Meta Name

<?php if(is_single() || is_page() || is_home()) { ?>
<meta name=”robots” content=”all” />
<?php } else { ?>
<meta name=”googlebot” content=”noindex,noarchive,follow,noodp” />
<meta name=”robots” content=”noindex,noarchive,follow” />
<meta name=”msnbot” content=”noindex,noarchive,follow” />
<?php }?>
You can use the above code in the Header.php file in wordpress template. This will create automatic seo friendly meta name. WordPress content is generated dynamically, this tells the search […]

Popularity: 40% [?]

Wordpress SEO Friendly Title

On most of the wordpress theme, the blog title is set up like this in the Header.php file :
<title><?php bloginfo(’name’); ?><?php wp_title(’–’); ?></title>
Here, first one is the name of the blog and second is the title. But putting the title of the page first will help you for Search Engine Optimization (SEO). And […]

Popularity: 32% [?]