Using Ghost 3.2.0
URL: https://blog.getclue.com/visionlink-frequently-asked-questions/
Problem: Google’s Structure Data Testing Tool (SDDT), raises an error because Ghost’s auto-generated schema misses a url tag in the Publisher section of the script. See here.
Here’s the section of the auto-generated script that Ghost creates:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"publisher": {
"@type": "Organization",
"name": "The Full Scoop",
"logo": "http://blog.getclue.com:80/content/images/2020/06/clue_wordmark_safety_orange.png"
},
Question: I want to edit Ghost’s auto-generated script, to add the missing url tag that Google’s SDDT tool is complaining about i.e. add this after the name tag and before the logo tag above:
"url": "https://blog.getclue.com",
How do I do that?