I'm looking for a way to disable the automatic more-tag for a specific category.
I'm looking for a way to disable the automatic more-tag for a specific category.
Found it:
<?php
if (is_category(4)) {
the_content();
}else{
the_excerpt();
}
?>
When the category's ID is 4, the full posts will be displayed in the archive. Other posts will be displayed as a teaser.
This topic has been closed to new replies.