Skip to content

Instantly share code, notes, and snippets.

@joychetry
Created April 5, 2020 14:41
Show Gist options
  • Save joychetry/5e335fc228421e9d4a2500c9a6d183db to your computer and use it in GitHub Desktop.
Save joychetry/5e335fc228421e9d4a2500c9a6d183db to your computer and use it in GitHub Desktop.
Yoast to Excerpt Using Shortcode
/*START Yoast to Excerpt*/
add_shortcode( 'crowwwn_ymeta', 'get_yoast_meta' );
function get_yoast_meta() {
$yoast_meta = get_post_meta(get_the_ID(), '_yoast_wpseo_metadesc', true);
if ($yoast_meta == !NULL) {
echo $yoast_meta;
}
else {
$content = get_the_content();
echo wp_trim_words( $content , '27' );
}
}
/*END Yoast to Excerpt*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment