Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.0.1",
"version": "2.0.2",
"slug": "blockparty-faq"
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,7 @@ Yoast SEO is required for the FAQ schema (JSON-LD) generation. It is installed a
### 2.0.1 - 2026-01-27

- Fix build blocks

### 2.0.2 - 2026-01-27

- Add missing isAccordion attribute
4 changes: 2 additions & 2 deletions blockparty-faq.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: A FAQ block for WordPress Editor that provided structured data based on FAQ schema.
* Requires at least: 6.2
* Requires PHP: 8.1
* Version: 2.0.1
* Version: 2.0.2
* Plugin URI: https://beapi.fr
* Author: Be API Technical team
* Author URI: https://beapi.fr
Expand Down Expand Up @@ -41,7 +41,7 @@
}

// Plugin constants
define( 'BLOCKPARTY_FAQ_VERSION', '2.0.1' );
define( 'BLOCKPARTY_FAQ_VERSION', '2.0.2' );

// Plugin URL and PATH
define( 'BLOCKPARTY_FAQ_DIR', plugin_dir_path( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockparty-faq",
"version": "2.0.1",
"version": "2.0.2",
"description": "SEO friendly FAQ module in an accessible accordion",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion src/faq-answer/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "blockparty/faq-answer",
"version": "2.0.1",
"version": "2.0.2",
"title": "FAQ Answer",
"category": "design",
"parent": [ "blockparty/faq-item" ],
Expand Down
2 changes: 1 addition & 1 deletion src/faq-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "blockparty/faq-item",
"version": "2.0.1",
"version": "2.0.2",
"title": "FAQ Item",
"category": "design",
"parent": [ "blockparty/faq" ],
Expand Down
2 changes: 1 addition & 1 deletion src/faq-question/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "blockparty/faq-question",
"version": "2.0.1",
"version": "2.0.2",
"title": "FAQ Question",
"category": "design",
"parent": [ "blockparty/faq-item" ],
Expand Down
8 changes: 7 additions & 1 deletion src/faq/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "blockparty/faq",
"version": "2.0.1",
"version": "2.0.2",
"title": "FAQ",
"category": "design",
"description": "A FAQ block for WordPress Editor that provided structured data based on FAQ schema.",
"supports": {
"html": false,
"innerBlocks": true
},
"attributes": {
"isAccordion": {
"type": "boolean",
"default": true
}
},
"textdomain": "blockparty-faq",
"editorScript": "file:./index.js",
"viewScript": "file:./script.js",
Expand Down
Loading