How to add meta description to home page?

r.s.mahanti

Junior Member
Joined
Dec 12, 2009
Messages
131
Reaction score
37
I have a wordpress blog. I did not create single page in it. All I created are posts. Now I always keep my latest post on front. The problem is meta description of the front page. How to set the meta description of the front page? I am using the SEO plugin by yoast. But I can't set the meta description of home page as there is no home page. Kindly suggest me something friends.
 
Take a complete backup of your blog before editing the core files

Appearance > Editor > Select header.php
Add the code below,between the <head> and </head> tags

Code:
<?php if (  (is_home()) || (is_front_page())  ) { ?>
<meta name="description" content="add your description here" />
<?php } elseif (is_single()) { ?>
<meta name="description" content="<?php the_excerpt();?>"/>
<?php } ?>
 
Just use a plugin like seo ultimate or yoast
 
Whatever meta you'll put in the general setting of yoast will become the meta of ur site..
and for the posts you can do that manually when you create posts..

though ppl say yoast is having more features.. I personally prefer all in one seo.. its simple and easy to handle.
 
Last edited:
Whatever meta you'll put in the general setting of yoast will become the meta of ur site..
and for the posts you can do that manually when you create posts..

though ppl say yoast is more features.. I personally prefer all in one seo.. its simple and easy to handle.


I will also recommand to use All in One SEO.

Just install the plugin and then when you will enter each page below the content area you will get your meta/keyword and title and all can be change.
 
Problem solved with this code. Thank you very much.

Take a complete backup of your blog before editing the core files

Appearance > Editor > Select header.php
Add the code below,between the <head> and </head> tags

Code:
<?php if (  (is_home()) || (is_front_page())  ) { ?>
<meta name="description" content="add your description here" />
<?php } elseif (is_single()) { ?>
<meta name="description" content="<?php the_excerpt();?>"/>
<?php } ?>
 
Hi, use platinum seo pack wordpress plugin it have more options also..
 
Why you are wasting time in editing codes just use Platinum SEO Pack WordPress plug-in then use meta description to home page at same time to every posts.
 
Back
Top