<?php if(is_category() || is_archive()) {
the_excerpt();
} else {
the_content();
} ?>
This does not work on the homepage of the blog for obvious reasons. How to get it work on the homepage as well?
<?php if(is_category() || is_archive()) {
the_excerpt();
} else {
the_content();
} ?>
This does not work on the homepage of the blog for obvious reasons. How to get it work on the homepage as well?
Adding is_home ?
i have not tried that. but is it the official tag to check if it is the wordpress blog's homepage? :)
This topic has been closed to new replies.