plugin updates

This commit is contained in:
Tony Volpe
2024-10-24 12:57:16 -04:00
parent 8217f0dbed
commit 5e040c9234
399 changed files with 3377 additions and 46318 deletions

View File

@@ -0,0 +1,37 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"version": "23.0",
"name": "yoast-seo/estimated-reading-time",
"title": "Yoast Estimated Reading Time",
"description": "Shows an estimated reading time based on the content length.",
"category": "yoast-structured-data-blocks",
"icon": "clock",
"keywords": [
"SEO",
"reading time",
"content length"
],
"textdomain": "wordpress-seo-premium",
"attributes": {
"estimatedReadingTime": {
"type": "number",
"default": 0
},
"descriptiveText": {
"type": "string",
"default": "Estimated reading time:"
},
"showDescriptiveText": {
"type": "boolean",
"default": true
},
"showIcon": {
"type": "boolean",
"default": true
}
},
"example": {
"attributes": {}
}
}

View File

@@ -0,0 +1,37 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"version": "23.0",
"name": "yoast-seo/related-links",
"title": "Yoast Related Links",
"description": "Adds a list of links related to this page.",
"category": "yoast-internal-linking-blocks",
"icon": "editor-ul",
"keywords": [
"SEO",
"internal linking",
"site structure",
"related posts",
"related pages"
],
"textdomain": "wordpress-seo-premium",
"attributes": {
"status": {
"type": "string",
"default": "loading"
},
"values": {
"type": "string",
"source": "html",
"selector": "ul",
"multiline": "li",
"default": ""
}
},
"example": {
"attributes": {
"status": "loaded",
"values": "<li><a href='https://example.org'>Related link 1</a></li> <li><a href='https://example.org'>Related link 2</a></li> <li><a href='https://example.org'>Related link 3</a></li>"
}
}
}

View File

@@ -0,0 +1,80 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"version": "23.1",
"name": "yoast-seo/table-of-contents",
"title": "Yoast Table of Contents",
"description": "Adds a table of contents to this page.",
"category": "yoast-internal-linking-blocks",
"icon": "editor-ul",
"keywords": [
"SEO",
"links",
"toc",
"site structure"
],
"textdomain": "wordpress-seo-premium",
"attributes": {
"title": {
"type": "string",
"source": "html",
"selector": "h1,h2,h3,h4,h5,h6",
"default": "Table of contents"
},
"level": {
"type": "number",
"default": 2
},
"maxHeadingLevel": {
"type": "number",
"default": 3
},
"headings": {
"type": "array",
"source": "query",
"selector": "a",
"query": {
"content": {
"type": "string",
"source": "html"
},
"href": {
"type": "string",
"source": "attribute",
"attribute": "href"
},
"level": {
"type": "string",
"source": "attribute",
"attribute": "data-level"
}
}
}
},
"example": {
"attributes": {
"headings": [
{
"content": "Heading 1",
"href": "#heading-1",
"level": "2"
},
{
"content": "Subheading 1",
"href": "#subheading-1",
"level": "3"
},
{
"content": "Subheading 2",
"href": "#subheading-2",
"level": "3"
},
{
"content": "Heading 2",
"href": "#heading-2",
"level": "2"
}
]
}
}
}