/**
* Reusable Blocks accessible in backend
* @link https://www.billerickson.net/reusable-blocks-accessible-in-wordpress-admin-area
*
*/
function be_reusable_blocks_admin_menu() {
add_menu_page( 'Reusable Blocks', 'Reusable Blocks', 'edit_posts', 'edit.php?post_type=wp_block', '', 'dashicons-editor-table', 22 );
}
add_action( 'admin_menu', 'be_reusable_blocks_admin_menu' );
Source// into a separated js files
wp.domReady( () => {
//Register 2 styles of headings
wp.blocks.registerBlockStyle( 'core/heading', [
{
name: 'default',
label: 'Default',
isDefault: true
},
{
name: 'display',
label: 'Display'
}
]);
} );
// functions.php
// Will only leave Image, Paragraph, Heading and List blocks
function misha_allowed_block_types( $allowed_blocks, $post ) {
$allowed_blocks = array(
'core/image',
'core/paragraph',
'core/heading',
'core/list'
);
// Only for Page post type
if( $post->post_type === 'page' ) {
$allowed_blocks[] = 'core/shortcode';
}
return $allowed_blocks;
}
add_filter( 'allowed_block_types', 'misha_allowed_block_types', 10, 2 );
Source//functions.php
function jba_disable_editor_fullscreen_by_default() {
$script = "jQuery( window ).load(function() { const isFullscreenMode = wp.data.select( 'core/edit-post' ).isFeatureActive( 'fullscreenMode' ); if ( isFullscreenMode ) { wp.data.dispatch( 'core/edit-post' ).toggleFeature( 'fullscreenMode' ); } });";
wp_add_inline_script( 'wp-blocks', $script );
}
add_action( 'enqueue_block_editor_assets', 'jba_disable_editor_fullscreen_by_default' );
Sourceadd_action('acf/init', 'sp_register_blocks');
function sp_register_blocks() {
// check if function exists.
if( function_exists('acf_register_block_type') ) {
// register the block.
acf_register_block_type(array(
'name' => 'block-name',
'title' => __('Block name'),
'description' => __('A xxx block build with ACF to display images.'),
'render_template' => 'partials/blocks/block-name/block.php',
'category' => 'common',
'icon' => 'images-alt2',
'align' => 'wide',
'enqueue_assets' => function(){
// Enqueue script if needed by the block
wp_enqueue_script( 'block-name', get_template_directory_uri() . '/partials/blocks/block-name/script.js', array(), '1.0.0', true );
},
));
}
}
Source// functions.php
add_filter( 'allowed_block_types', 'sp_allowed_block_types', 10, 2 );
function sp_allowed_block_types( $allowed_blocks, $post ) {
$allowed_blocks = array(
'core/image',
'core/paragraph',
'core/heading',
'core/list'
);
if( $post->post_type === 'page' ) {
$allowed_blocks[] = 'core/shortcode';
}
return $allowed_blocks;
}
// functions.php
add_theme_support( 'align-wide' );