Created
May 11, 2021 19:49
-
-
Save wormeyman/75f95904992341db8186112470e5cb53 to your computer and use it in GitHub Desktop.
Generate Press remove excerpts from archive pages.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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