I need to have different tag titles for each category of my website. I've tried all in one SEO but it looks like i cannot change it individually.
Thanks in advance
<title></title>
<head>
<title>
Would you mind using the "description" field for tags as the SEO title? If so:
add_filter( 'single_term_title', 'wpse_60464_title_from_description' ); function wpse_60464_title_from_description( $title ) { if ( ( $obj = get_queried_object() ) && ! empty( $obj->description ) ) $title = $obj->description; return $title }
You can also use Joost de Valk's Wordpress SEO plugin, which will do the job.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
10 months ago
viewed
44 times
active
Get the weekly newsletter!
see an example newsletter
By subscribing, you agree to the privacy policy and terms of service.
<title></title>in<head>section different for each category ? – amit Aug 1 '12 at 14:00<title>– amit Aug 1 '12 at 14:45