How to print meta description to posts? [closed]
You will want to make use of Yoast SEO’s “WPSEO_Frontend” class. To display the meta description field content, you could do the following: <?php if (class_exists(‘WPSEO_Frontend’)) { echo WPSEO_Frontend::metadesc(false); } ?>