first commit without licensingg

This commit is contained in:
kbe
2025-08-21 14:40:43 +02:00
commit fa8d4e58a4
130 changed files with 82163 additions and 0 deletions

14
inc/gutenberg/filters.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
/**
* Filters.
*
* @package Revision
*/
/**
* Disable wp_check_widget_editor_deps.
*/
function csco_disable_wp_check_widget_editor_deps() {
call_user_func( 'remove_filter', 'admin_head', 'wp_check_widget_editor_deps' );
}
add_filter( 'init', 'csco_disable_wp_check_widget_editor_deps' );