// ===== 更新 Article Schema =====
var schemaScript = document.getElementById('articleSchema');
if (schemaScript && window.__articleData) {
var a = window.__articleData;
schemaScript.textContent = JSON.stringify({
"@context": "https://schema.org",
"@type": "Article",
"headline": a.title || "",
"description": a.summary || a.title || "",
"image": a.coverImage || "",
"datePublished": a.createdAt || "",
"author": { "@type": "Organization", "name": "邓州市合信广告装饰部" },
"publisher": {
"@type": "Organization",
"name": "邓州市合信广告装饰部",
"logo": { "@type": "ImageObject", "url": "https://www.dzhxggzs.com/images/store-1.jpg" }
},
"mainEntityOfPage": { "@type": "WebPage", "@id": "https://www.dzhxggzs.com/article.html?id=" + a.id }
});
}
文章评论