Maintic Blocks
WordPress block library by Maintic
by Tarosky INC. · github.com/tarosky/maintic-blocks · website
Install
The author publishes release zips, so WP-CLI can install straight from GitHub:
wp plugin install https://github.com/tarosky/maintic-blocks/releases/download/0.1.2/maintic-blocks.zipReadme
Maintic Blocks
Contributors: tarosky, Takahashi_Fumiki
Tags: blocks, gutenberg, faq
Tested up to: 6.9
Stable Tag: nightly
Requires at least: 6.6
Requires PHP: 7.4
License: GPL 3.0 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Maintic block library for WordPress.
Description
A single WordPress plugin that provides multiple Gutenberg blocks for the Maintic ecosystem.
Included Blocks
- FAQ — Accordion-style FAQ block with JSON-LD structured data output.
Installation
- Download the latest release zip from GitHub Releases.
- Upload the zip from Plugins > Add New > Upload Plugin in the WordPress admin.
- Activate the plugin.
Frequently Asked Questions
How can I disable specific blocks?
Use the maintic_blocks_disabled_blocks filter:
add_filter( 'maintic_blocks_disabled_blocks', function ( $disabled ) {
$disabled[] = 'maintic/faq';
return $disabled;
} );
Disabling a parent block automatically disables all its child blocks.
How can I contribute?
Contributions are welcome at our GitHub repository. Please open an issue or pull request.
Changelog
1.0.0
- Initial release with FAQ block.
Read the full README on GitHub →