Use seo_description instead of page.description
seo_description is used in the meta tags but not in the ld+json If page.description is not set, the the description at ld+json will be null.
This commit is contained in:
parent
aca4b60f48
commit
f1e9b9acb1
|
@ -112,7 +112,7 @@
|
|||
"headline": {{ page.title | jsonify }},
|
||||
"image": {{ page.image | jsonify }},
|
||||
"datePublished": {{ page.date | date_to_xmlschema | jsonify }},
|
||||
"description": {{ page.description | jsonify }}
|
||||
"description": {{ seo_description | jsonify }}
|
||||
}
|
||||
</script>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue