Tagged: structured data
Hi!
How can I implement “Organization” Structured Data with organization name, phone, social?
and how to remove the error in Structured Data Testing Tool.:
ImageObject
The property ImageObject is not recognized by Google for an object of type WebPage.
Hey Vrender,
You an use any plugin for this work ( All in one Schema for example ). If this does not work for what you want to do
then you can consider hire someone to assist you further.
Best regards,
Basilis
Hi Basilis!
Does this code work in this case if I add to the Functions.php?
function my_custom_code(){
?>
<script type=”application/ld+json”>
{
“@context”: “http://schema.org”,
“@type”: “Organization”,
“url”: “http://www.your-company-site.com”,
“contactPoint”: [{
“@type”: “ContactPoint”,
“telephone”: “+1-401-555-1212”,
“contactType”: “customer service”
}]
}
</script>
<?php
}
add_action(‘wp_head’, ‘my_custom_code’);
Hi,
Thanks for the update.
1.) Yes, that could work, but it’s usually added right before the closing body tag. More example in the docs:
// https://schema.org/Organization
Or you can try one of these plugins:
// https://wordpress.org/plugins/schema/
// https://wordpress.org/plugins/wp-structuring-markup/
2.) This thread might help.
// https://kriesi.at/support/topic/sturctured-data-testing-error/#post-1013165
Best regards,
Ismael