WordPress v4.9.8 に Gutenberg プラグインをインストールしましたが、独自の CSS を提供できるように、付属の CSS を削除しようとしています。
含まれるシートは次のとおりです。
<link rel='stylesheet' id='wp-block-library-css' href='/wp-content/plugins/gutenberg/build/block-library/style.css?ver=1535795173' type='text/css' media='all' />
私は次のことを試しました:
add_action( 'wp_print_styles', 'wps_deregister_styles', 100 );
function wps_deregister_styles() {
wp_dequeue_style( 'wp-block-library-css' );
wp_deregister_style( 'wp-block-library-css' );
}
これのバリエーションと同様に、ファイルは持続します。どうすれば削除できますか?