Home / Archive / Organization schema setup
Duplicate Snippet

Embed Snippet on Your Site

Organization schema setup

This PHP snippet is for Organization schema (JSON-LD) that clearly says: “This site is published by an organization — not a person.”

This must be static and site-level, not post-level. UPDATE with all relevant info below before setting this snippet to Active.

<10
Code Preview
php
<?php
add_action( 'wp_head', function () {
    ?>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "name": "Perimeter Church",
      "url": "https://www.website.org",
      "logo": "http://www.website.org/pathto/logofilehere_512.png"
    }
    "sameAs": [
  "https://www.instagram.com/username",
  "https://www.facebook.com/username",
  "https://www.youtube.com/@username"
]
    </script>
    <?php
});

Comments

Add a Comment