Skip to content

Instantly share code, notes, and snippets.

View apermo's full-sized avatar

Christoph Daum apermo

View GitHub Profile
@apermo
apermo / wp-gutenberg-reusable-block-interface.php
Last active April 16, 2019 12:44 — forked from mrpritchett/wp-gutenberg-reusable-block-interface.php
Gutenberg Reusable Block Editor Interface
function custom_add_interface_to_wp_block( $args, $post_type ) {
global $pagenow;
if ( 'wp_block' !== $name ) {
return $args;
}
$changed_args = array(
'show_ui' => true,
'show_in_menu' => true,