Skip to content

Instantly share code, notes, and snippets.

@joychetry
Last active April 5, 2020 19:09
Show Gist options
  • Save joychetry/97aee5232a39f2fcb6117277d6137c3b to your computer and use it in GitHub Desktop.
Save joychetry/97aee5232a39f2fcb6117277d6137c3b to your computer and use it in GitHub Desktop.
Replace Default Post Excerpt to Yoast using Filter
add_filter( 'get_the_excerpt', 'replace_post_excerpt_crowwwn' );
function replace_post_excerpt_crowwwn($output)
{
$output=get_post_meta(get_the_ID(), '_yoast_wpseo_metadesc', true);
if ($output == !NULL) {
return $output;
}
else {
$content = get_the_content();
return wp_trim_words( $content , '27' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment