仅在管理页面中包含 bootstrap
Including bootstrap in the admin page only
我在我的插件中添加了这一行
wp_enqueue_style( 'dazzling-bootstrap', get_template_directory_uri() . '/inc/css/bootstrap.min.css' );
而且整个后台管理似乎都受到了 bootstrap 的影响。关于如何仅在该插件上的任何想法?
那是因为您没有在任何地方指定该文件应该只包含在您的插件页面中,而不是包含在整个管理后端中。尝试添加条件检查,然后将样式表加入队列。
global $post;
if ( 'enter_plugin_page_slug_here' == $post->name ) {
// enqueue stylesheet here
}
我在我的插件中添加了这一行
wp_enqueue_style( 'dazzling-bootstrap', get_template_directory_uri() . '/inc/css/bootstrap.min.css' );
而且整个后台管理似乎都受到了 bootstrap 的影响。关于如何仅在该插件上的任何想法?
那是因为您没有在任何地方指定该文件应该只包含在您的插件页面中,而不是包含在整个管理后端中。尝试添加条件检查,然后将样式表加入队列。
global $post;
if ( 'enter_plugin_page_slug_here' == $post->name ) {
// enqueue stylesheet here
}