Created
April 28, 2015 16:12
-
-
Save jamigibbs/7069bcbc2818a77e7eeb to your computer and use it in GitHub Desktop.
Show content excerpt on category and archive pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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