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.
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.
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) :
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