Skip to content

Instantly share code, notes, and snippets.

@sandeshjangam
Created December 20, 2017 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandeshjangam/17e3280558d3748c1c1c7f42562bc13a to your computer and use it in GitHub Desktop.
Save sandeshjangam/17e3280558d3748c1c1c7f42562bc13a to your computer and use it in GitHub Desktop.
How to remove excerpt on blog page?
add_filter( 'the_excerpt', 'ast_custom_blog_remove_excerpt' );
function ast_custom_blog_remove_excerpt( $content ) {
/* If it is blog page then set $content empty. */
if ( is_home() ) {
$content = '';
}
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment