Open MaggieCabrera opened 4 years ago
Media websites often achieve this by using the custom excerpt field. If a post includes a custom excerpt, it's displayed there, if not, nothing shows up:
<?php if ( has_excerpt() ) { ?>
<p class="entry-subtitle"><?php the_excerpt(); ?></p>
<?php } ?>
Media websites often achieve this by using the custom excerpt field. If a post includes a custom excerpt, it's displayed there, if not, nothing shows up
Since this appears on the home page and categories pages, then we have two excerpts?
For archive pages, we could try showing the custom excerpt as the subtitle (if it exists), and then display truncated post content below that?
Implement the post subtitles (slack thread)