Tagged: enfold, rich snippets, structured data
Hi there
How can I implement Structured Data (https://developers.google.com/search/docs/guides/intro-structured-data?visit_id=1-636246650229734911-91592462&hl=en-GB&rd=1
with the Enfold Theme?
Thank you for your time.
Hey waveshaper!
Please add following code to Functions.php file in Appearance > Editor
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');
Cheers!
Yigit
Hi Yigit
Wow, thanks for the quick and clear response, understood.
You guys rock!
Cheers