Page 1 of 1
Adding Custom Schema Markup to home page
Posted: Mon Apr 27, 2026 8:48 pm
by matthew.l.jones
Hello, I am going to page >page HTML and tried to add my Custom Schema Markup. But, it just appears as normal text on my website. Can anyone please tell me how to add my markup to my homepage
Re: Adding Custom Schema Markup to home page
Posted: Mon Apr 27, 2026 9:50 pm
by BaconFries
That will depend how it looks is markup valid? but generally you insert it between the <head></head> tags*
Have you read the following
https://www.wysiwygwebbuilder.com/structured_data.html
Re: Adding Custom Schema Markup to home page
Posted: Mon Apr 27, 2026 10:28 pm
by matthew.l.jones
Thank you for your response. I have read that article.
I'm a bridal shop. So I don't understand even if I just use the native markup, because none of the options are a retail store.
But besides that. I've tried inserting the markup in page HTML and also putting the HTML from the toolbox in.
I either get that the schema shows up in my regular website or it doesn't allow the website page to load properly. It just gives a blank white page.
And I have no idea what I'm doing wrong?
Re: Adding Custom Schema Markup to home page
Posted: Tue Apr 28, 2026 12:05 am
by BaconFries
Ok understood that is for your bridal business so the following is a general markup for it.
You can test it and check its validation at the following below which I did with 0 errors and 0 warnings by copying and paste or once added to your site use the url.
For testing.
https://developers.google.com/search/do ... tured-data
Insert by going to Page HTML Between the <head></head> tags*
Code: Select all
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Ann Matthews Bridal",
"image": "https://www.annmatthews.com/logo.png",
"url": "https://www.annmatthews.com/",
"telephone": "+1-505-883-4500",
"address": {
"@type": "PostalAddress",
"streetAddress": "Menaul Blvd NE",
"addressLocality": "Albuquerque",
"addressRegion": "NM",
"postalCode": "87110",
"addressCountry": "US"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "11:00",
"closes": "19:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Saturday",
"opens": "10:00",
"closes": "19:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Sunday",
"opens": "12:00",
"closes": "17:00"
}
],
"sameAs": [
"https://www.facebook.com/annmatthewsbridal",
"https://www.instagram.com/annmatthewsbridal"
]
}
</script>