views:

37

answers:

2

Hi friends,

I researched at google but couldnot find anything.

Is there a plug-in or anything that will allow us to edit the meta tags for each individual post?

Appreciate helps! thanks.

A: 

I suppose there are ; for instance, if you search for "meta tags" in wordpress' plugin lists, you'll get a few answers.


One of those answers is All in One SEO Pack -- which has good ratings, seems to work with recent versions of Wordpress, and has been recently updated.

Amongst the features, you'll see (quoting) :

  • Generates META tags automatically
  • You can override any title and set any META description and any META keywords you want.
Pascal MARTIN
A: 

You can also work with the meta description field in pages, single posts and post categories without a plugin by using a custom field called "description" and the built in category descriptions:

<meta name="description" content="<?php if (is_page()) { echo get_post_meta($post->ID, 'description', true);

} elseif (is_category()) { echo trim(strip_tags(category_description()));

} elseif (is_single()) { echo $title = get_the_title();

} else { echo bloginfo('description'); } ?>" />

Adapted from Stupid WordPress Tricks • Perishable Press

songdogtech
haha, I've thought same solution :D just completed ;) thanks anyway
artmania