Site logo

Archived topic

Display Meta Description of the page/post on the Page Header Element

17 replies · Started by Huy on June 14, 2019

Viewing posts 16–18 of 18

Something like this might help, then: https://stackoverflow.com/a/43718728

add_shortcode( 'page_hero_meta_desc', function() {
    if ( class_exists( 'WPSEO_Frontend' ) ) {
        $wpseo_object = WPSEO_Frontend::get_instance();
        $intro_text = $wpseo_object->metadesc( false );

        return $intro_text;
    }
} );

Thanks Tom

It works like a charm

Thank you very much <3

You're welcome :)

This archived topic is closed to new replies.