Schema Implementation with Rankmath

IMGuy

Active Member
Bronze Star
Joined
Apr 23, 2025
Messages
150
Reaction Score
152
Feedback
0 / 0 / 0
Hello I am having some trouble in implementing schema for my client website. As the home page is the static page. Where should I put my schema? There is only page and post schema. Should I put it in the header section manually? or how does it work?

I tried with generic page/post schema but it doesn't show in the schema.org validator.
 
Hello I am having some trouble in implementing schema for my client website. As the home page is the static page. Where should I put my schema? There is only page and post schema. Should I put it in the header section manually? or how does it work?

I tried with generic page/post schema but it doesn't show in the schema.org validator.
Code:
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "WebPage",
  "name": "Your Website Name",
  "description": "Your website description",
  "publisher": {
    "@type": "Organization",
    "name": "Your Organization Name",
    "url": "https://yourwebsite.com"
  }
}
</script>

Is that what you are using in the header? Share the code.
 
Back
Top