Wordpress Theme - Category and Tag Excerpts


Author Message
David

Posted: 7/18/2009
Quote message 

Hi - My understanding is that from an SEO standpoint, it's good to have a theme that makes sure that both Categories Pages and Tags Pages will display as Excerpts in order to avoid being seen as having duplicate content on the same site.

And, my understanding is that this is something done in a Wordpress Theme when creating/setting it up: can someone please advise me on who this is done? Can I do this in the interface, or must I tweak code?

THANKS!
David :-)
 
Garry

Posted: 7/18/2009
Quote message 

You need to do it manually, following may help:

http://codex.wordpress.org/Template_Tags/wp_list_categories

http://codex.wordpress.org/Template_Tags/the_tags
http://codex.wordpress.org/Template_Tags/tag_description
http://codex.wordpress.org/Template_Tags/single_tag_title
http://codex.wordpress.org/Template_Tags/wp_tag_cloud
http://codex.wordpress.org/Template_Tags/wp_generate_tag_cloud
 
Bob

Posted: 7/19/2009
Quote message 

I sometimes replace the following in archive.php

<?php if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry &raquo;', 'kubrick')); ?>

with this

<?php the_excerpt(); ?>

This gives you the excerpt in tag, category and search listings. The excerpt will be your hand crafted one or the first 55 words of the post.

- Bob

 
David

Posted: 8/17/2009
Quote message 

Quote Bob:

I sometimes replace the following in archive.php

<?php if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry &raquo;', 'kubrick')); ?>

with this

<?php the_excerpt(); ?>

This gives you the excerpt in tag, category and search listings. The excerpt will be your hand crafted one or the first 55 words of the post.

- Bob



Hey Bob, I'll give that a shot, thanks! - geez, I posted then forgot to come back and check.... maybe they need some kind of email notification in this forum..

Best,
David :-)
 
David P.

Posted: 1/4/2010
Quote message 

Hey Bob - that code works - is there a way to tweak it to get more than one except to show? I'd like the site visitor to see a number of excerpts to choose from... thanks!

David