我在插件中添加了一个菜单页。在wp codex 说明我可以使用单独的。用于菜单内容的php文件。
function register_custom_menu_page() {
add_menu_page(\'custom menu title\', \'custom menu\', \'add_users\', \'myplugin/myplugin-index.php\', \'\', plugins_url(\'myplugin/images/icon.png\'), 6);
}
myplugin索引。php
<?php
echo "Admin Page Test";
?>
现在我想在myplugin索引中使用自定义样式(.css)。php。如何做到这一点?
BR,
麦贝克
最合适的回答,由SO网友:Gandalf 整理而成
你可以使用
<!doctype html>
<head>
<style type="text/css">
#toplevel_page_custom_menu_title{
display:none !important;
}
.update-nag{
height:auto !important;
}
</style>
</head>
<body>
<div class="update-nag">
<?php
echo "Admin Page Test";
?>
</div>
</body>
</html>
你可以这样排队
function prefix_add_my_stylesheet() {
wp_register_style( \'prefix-style\', plugins_url(\'style.css\', __FILE__) );
wp_enqueue_style( \'prefix-style\' );
}
add_action( \'admin_enqueue_scripts\', \'prefix_add_my_stylesheet\' );
参考号:
http://codex.wordpress.org/Plugin_API/Action_Reference/admin_enqueue_scripts#Example:_Load_CSS_File_on_All_Admin_Pages