Site logo

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

Home Forums Support [Resolved] Display Meta Description of the page/post on the Page Header Element

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

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #933289
    Tom
    Lead Developer
    Lead Developer

    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;
        }
    } );
    #933653
    Huy

    Thanks Tom

    It works like a charm

    Thank you very much <3

    #933925
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.