mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
15 lines
271 B
PHP
15 lines
271 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Disable Customizer CSS
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
add_action(
|
|
'customize_register',
|
|
static function ($manager) {
|
|
$manager->remove_section('custom_css');
|
|
},
|
|
20,
|
|
1
|
|
);
|