Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Created April 28, 2015 16:12
Show Gist options
  • Save jamigibbs/7069bcbc2818a77e7eeb to your computer and use it in GitHub Desktop.
Save jamigibbs/7069bcbc2818a77e7eeb to your computer and use it in GitHub Desktop.
Show content excerpt on category and archive pages
<?php if ( is_category() || is_archive() ) {
the_excerpt();
} else {
the_content( __( 'Continue Reading', 'rescue' ) );
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment