一种方法是将样式排队。管理面板的css。
创建一个文件custom-css.css
并向其添加css,然后通过将以下内容放入主题的function.php
文件
function admin_enqueue() {
wp_enqueue_style( \'custom_css\', content_url() . \'/themes/theme-name/custom.css\');
//Please replace the path with the correct path to the file in your theme
}
add_action( \'admin_enqueue_scripts\', \'admin_enqueue\' );