-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.php
More file actions
42 lines (39 loc) · 1.32 KB
/
plugin.php
File metadata and controls
42 lines (39 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Plugin Name: CU Blocks
* Description: Example static block scaffolded with Create Block tool.
* Requires at least: 5.9
* Requires PHP: 7.0
* Version: 0.1.0
* Author: The WordPress Contributors
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: _test
*
* @package create-block
*/
/**
* Add script to the block editor.
* https://soderlind.no/hide-block-styles-in-gutenberg/
*/
function remove_block_style() {
wp_register_script(
'block-config',
plugin_dir_url( __FILE__ ) . '/src/script.js',
[ 'wp-blocks', 'wp-edit-post' ]
);
register_block_type( 'remove/block-style', ['editor_script' => 'block-config'] ); // register block editor script.
}
add_action( 'init', 'remove_block_style' );
/**
* Registers the block using the metadata loaded from the `block.json` file.
* Behind the scenes, it registers also all assets so they can be enqueued
* through the block editor in the corresponding context.
*
* @see https://developer.wordpress.org/reference/functions/register_block_type/
*/
function create_block_test_block_init() {
register_block_type( __DIR__ . '/build/feature-card' );
register_block_type( __DIR__ . '/build/hero-image' );
}
add_action( 'init', 'create_block_test_block_init' );