Json-LD Custom Call Tag

JSON-LD is a data format for describing web content, using JSON to represent data and a specific syntax to describe web content.

The background feature enables the structured data feature, and by default, it will insert a tag namedjson-ldThe content of the tag is structured data.

If you want to have more control over the content of Json-LD, you can use labels{% jsonLd %} ... {% endjsonLd %}.

You just need to wrap the content in{...}

For example, we custom define the author field, and supplement the images field:

{% jsonLd %}
<script type="application/ld+json">
{
	"author": "AnQiCMS",
	"image": [
		"https://en.anqicms.com/anqicms.png"
	]
}
</script>
{% endjsonLd %}