Youtube, LinkedIn, others Missing
-
Hello,
I recently tried to add a global meta to the dialog on the settings page and while is showed up, Google Structured Data Tool did not pick it up, as I force JSON+LD. So I added the following to my code:
// add-meta-tags publisher add LinkedIn, YouTube function my_publisher_extra($metadata_arr) { $metadata_arr['sameAs'][] = 'linkedin link'; $metadata_arr['sameAs'][] = 'youtube link'; return $metadata_arr; } add_filter('amt_jsonld_schemaorg_publisher_extra','my_publisher_extra');
Now Google Structure Data Tool sees everything. The example in the guide (https://www.codetrax.org/projects/wp-add-meta-tags/wiki/Common_Metadata_Customization_Recipes) shows using meta tags not JSON+LD.
It would be great if the social media links could be extended to at least include Youtube, Pinterest, and LinkedIn. It would be ideal if we could add our own to the list. Sort of a global dialog that shows up as sameAs within JSON+LD.
– Edward
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Youtube, LinkedIn, others Missing’ is closed to new replies.