manual excerpt won't display even though it's available
-
I’m using a child theme of twentythirteen. On my archive pages, content.php calls for the_excerpt and I have created manual excerpts for every page/post:
<?php if ( is_search() || is_home() || is_archive() ) : // Only display Excerpts for Search, Articles (blog) or Archive pages ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary -->
Yet what displays is the automatic excerpt WP generates followed by the telltale ellipsis (…). I’ve gone through all my plug-in settings to see if anything’s going on there, and I can’t find a thing.
I’ve even tried entering some text right after the “if” statement above to make sure the archive pages are indeed using that section of content.php, and they definitely are using that part of the code. Just not using my carefully crafted manual excerpts, much to my frustration.
Any ideas on what else I can try or where else I can look? The site is in development, so I can’t link to it here.
Thanks very much for any help!
- The topic ‘manual excerpt won't display even though it's available’ is closed to new replies.