Quantcast
Channel: help – WordPress.org Forums
Viewing all articles
Browse latest Browse all 13924

alchymyth on "Show Full Posts in Categories"

$
0
0

for Twenty Ten, you will need to edit loop.php (ideally in a child theme) and change the conditional statement in this line:

<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>

example to allow full posts also in the 'portfolio' category:

<?php if ( !is_category( 'portfolio' ) && is_archive() || is_search() ) : // Only display excerpts for search and for archives other than cat 'portfolio'. ?>

http://codex.wordpress.org/Conditional_Tags


Viewing all articles
Browse latest Browse all 13924

Trending Articles