Json-LD is a data format for describing web content, using JSON to represent data and using specific syntax to describe web content.
After the background function enables the structured data feature, it will default insert a label namedjson-ldThe content of the label is structured data.
If you want to control the content of Json-LD more freely, you can use tags{% jsonLd %} ... {% endjsonLd %}.
You just need to wrap the content in{...}Enter the custom field you need, Anqi CMS will automatically merge the data of them, if the field you define conflicts with the default field, the default field will be overwritten.Please note that the fields you define must comply with the JSON-LD syntax.
For example, we customize the author field, supplement the images field:
{% jsonLd %}
<script type="application/ld+json">
{
"author": "AnQiCMS",
"image": [
"https://en.anqicms.com/anqicms.png"
]
}
</script>
{% endjsonLd %}