As of April 2026, Fast Blocks is a WordPress block plugin with 10 active installations and a 0/5 rating0. It has been downloaded 2.2K+ times in total. Requires WordPress 5.7+ and PHP 7.0+. Available on WordPress.org since 2021. Top alternative: Spectra Gutenberg Blocks – Website….
Use the function add_fast_block to add a block to your theme in PHP. The Plugin automatically creates an interface for your block inside the editor.
Unlike the default block behaviour all blocks are rendered dynamically. This means changes inside the template are shown immediately without resaving the post or page.
Register your block:
$options = [
'name' => 'some-slug/block-name',
// template from theme-directory
'template' => '/blocks/test.php',
'settings' => [
// same settings as the original "wp.registerBlockType" without attributes.
'title' => 'Plugin Block',
],
'fields' => [
// define attributes and inputs/labels etc. that are needed.
'headline' => [
'label' => 'My Label',
'type' => 'st…| WordPress | 5.7+ requiredTested up to 6.6.5 |
| PHP | 7.0+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.