wp主题在使用的过程中,网站打开速度越来越慢,或者后台打开速度很慢,那就需要我们把古登堡的css给过滤掉,这样能提升一定的速度!

将下面代码复制到function.php中

function remove_block_library_css() { //移除古登堡css
wp_dequeue_style( 'wp-block-library' );
}
add_action( 'wp_enqueue_scripts', 'remove_block_library_css', 100 );