Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wormeyman/75f95904992341db8186112470e5cb53 to your computer and use it in GitHub Desktop.
Save wormeyman/75f95904992341db8186112470e5cb53 to your computer and use it in GitHub Desktop.
Generate Press remove excerpts from archive pages.
<?php
/**
* Remove excerpts from the archive pages only
* https://generatepress.com/forums/topic/remove-excerpt-from-the-archive-pages/#post-898902
*/
add_filter('wp_trim_excerpt', 'db_excerpt_metabox_remove');
function db_excerpt_metabox_remove($excerpt)
{
$output = $excerpt;
if (is_archive() && has_excerpt()) {
$output = '';
}
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment