Created
April 5, 2020 14:41
-
-
Save joychetry/5e335fc228421e9d4a2500c9a6d183db to your computer and use it in GitHub Desktop.
Yoast to Excerpt Using Shortcode
This file contains 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
/*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