PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.13.1
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.13.1
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
← All changes | includes/blocks.php +10 -0 2.11.12.13.1 View file →
@@ -125,8 +125,14 @@
125 125
126 126 new \ABlocks\Blocks\Container\Block();
127 127 new \ABlocks\Blocks\Heading\Block();
128 128 new \ABlocks\Blocks\Paragraph\Block();
129 + new \ABlocks\Blocks\AtomicText\Block();
130 + new \ABlocks\Blocks\AtomicImage\Block();
131 + new \ABlocks\Blocks\AtomicSvg\Block();
132 + new \ABlocks\Blocks\AtomicDiv\Block();
133 + new \ABlocks\Blocks\AtomicFlex\Block();
134 + new \ABlocks\Blocks\AtomicGrid\Block();
129 135 new \ABlocks\Blocks\Image\Block();
130 136 new \ABlocks\Blocks\Button\Block();
131 137 new \ABlocks\Blocks\DualButton\Block();
132 138 new \ABlocks\Blocks\Icon\Block();
@@ -219,8 +225,12 @@
219 225
220 226 public function register_block_category( $categories, $post ) {
221 227 return array_merge(
222 228 [
229 + [
230 + 'slug' => 'ablocks-atomic',
231 + 'title' => __( 'aBlocks Atomic', 'ablocks' ),
232 + ],
223 233 [
224 234 'slug' => 'ablocks',
225 235 'title' => __( 'ABlocks', 'ablocks' ),
226 236 ],