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.
我有一个 WordPress 项目,需要我从 wp-admin 区域中删除默认样式。我知道插入 load-styles.php 脚本但不删除的方法。任何帮助是极大的赞赏。
你可以试试这个
function remove_default_stylesheets() { wp_deregister_style('wp-admin'); } add_action('admin_init','remove_default_stylesheets');
将此代码粘贴到您的管理面板中functions.php,您的管理面板将没有样式(只会删除 WordPress 的默认样式表)。
functions.php