Skip to content

Instantly share code, notes, and snippets.

@eclarrrk
Created August 12, 2021 12:55
Show Gist options
  • Save eclarrrk/daa45c4d0c476903811e05c46da0a92f to your computer and use it in GitHub Desktop.
Save eclarrrk/daa45c4d0c476903811e05c46da0a92f to your computer and use it in GitHub Desktop.
How to show an excerpt for pages in WordPress search results
<?php
if ( 'page' === get_post_type() ) {
echo wp_trim_words( get_the_content(), 30, '...' );
} else {
the_excerpt();
}
// wp_trim_words() docs: https://developer.wordpress.org/reference/functions/wp_trim_words/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment