rankmath / seo-by-rank-math

Rank Math is a revolutionary WordPress SEO Plugin that combines the features of many SEO tools and lets you multiply your traffic in the easiest way possible :bulb: :chart_with_upwards_trend: →
https://rankmath.com
107 stars 52 forks source link

Instagram link in the social networks section #100

Closed 79ho3ein closed 2 years ago

79ho3ein commented 2 years ago

hello Please add the Instagram link to the social meta section. This item is available in the yoast plugin. This is very useful https://prnt.sc/1xezkea

thank you

pratikrm commented 2 years ago

Hello,

Earlier we used to provide an option in Social settings to add Instagram, Pinterest, etc page URLs but later we removed it as Google no longer uses this information from Structured data. Please read here: https://i.rankmath.com/Ut3CGr

Still, if you want to add the Instagram URL in the Structured data then please use the following code:

add_filter( 'rank_math/json_ld', function( $data, $jsonld ) {
    if ( ! isset( $data['Organization'] ) ) {
        return $data;
    }
    $data['Organization']['sameAs'][] = 'Instagram_URL';
    return $data;
}, 99, 2 );

I hope that helps.

79ho3ein commented 2 years ago

Thank you @pratikmts