我正在尝试在我的wp网站(前端)上包括我的插件样式表,但出于某种原因,它不起作用。
function init_gallery_scripts() {
if (is_admin() ) {
// This works!
wp_enqueue_script('gallery', plugins_url('js/gallery.js',__FILE__),array('wp-filebrowser'));
wp_enqueue_style('gallery-css', plugins_url('style/gallery.css',__FILE__));
}
else {
// This is not woking. Why?
wp_enqueue_style('gallery-front-css', plugins_url('style/gallery_front.css',__FILE__));
}
}
我也尝试过但没有成功:
wp_register_style('gallery-front-css', plugins_url('style/gallery_front.css',__FILE__));
wp_enqueue_style('gallery-front-css');
不知道我在这里做错了什么。