Json-LD is a data format for describing web content, which uses JSON to represent data and employs specific syntax to describe web content.
After the background function enables the structured data feature, a label namedjson-ld
is automatically inserted into the page, and the content of the label is structured data.
If you want to have more control over the content of Json-LD, you can use tags{% jsonLd %} ... {% endjsonLd %}
.
You just need to wrap the content in{...}
Enter the fields you need to customize, and the Aiqi CMS will automatically merge and process their data. If the fields you define conflict with the default fields, the default fields will be overridden.Please note that the fields you define must comply with JSON-LD syntax.
For example, we custom author field, add images field:
{% jsonLd %}
<script type="application/ld+json">
{
"author": "AnQiCMS",
"image": [
"https://en.anqicms.com/anqicms.png"
]
}
</script>
{% endjsonLd %}