Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
wp-admin 領域からデフォルトのスタイルを削除する必要がある WordPress プロジェクトがあります。load-styles.php スクリプトに挿入する方法は知っていますが、削除する方法は知っています。どんな助けでも大歓迎です。
あなたはこれを試すことができます
function remove_default_stylesheets() { wp_deregister_style('wp-admin'); } add_action('admin_init','remove_default_stylesheets');
このコードを に貼り付けるfunctions.phpと、管理パネルはスタイルレスになります (WordPress のデフォルトのスタイルシートのみが削除されます)。
functions.php