[WordPress] classic-theme-styles-inline-css の削除
問題
WordPressで、classic-theme-styles-inline-css というのがインラインで入っているのですが、これは削除可能ですか?
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>

答え
functions.php などにて、以下を追記する。
// classic-theme-styles-inline-css 削除
function dequeue_classic_theme_styles() {
wp_dequeue_style('classic-theme-styles');
}
add_action( 'wp_enqueue_scripts', 'dequeue_classic_theme_styles' );