我被你的问题弄糊涂了,你能不能wp_enqueue_style, 您实际上将其写入了这个线程标题中(不确定是否知道该函数存在)。
wp_enqueue_style
工作方式与wp_enqueue_script
对应的,但当然正如您所期望的那样,将样式表排队。。
下面是我在WordPress core中找到的排队列表(这些队列无需注册或声明路径即可使用)。
wp_enqueue_style( \'global\' );
wp_enqueue_style( \'wp-admin\' );
wp_enqueue_style( \'colors\' );
wp_enqueue_style( \'media\' );
wp_enqueue_style( \'ie\' );
wp_enqueue_style( \'imgareaselect\' );
wp_enqueue_style( \'imgareaselect\' );
wp_enqueue_style( \'plugin-install\' );
wp_enqueue_style( \'press-this\' );
wp_enqueue_style( \'press-this-ie\');
wp_enqueue_style( \'colors\' );
wp_enqueue_style( \'theme-install\' );
wp_enqueue_style( \'thickbox\' );
除上述内容外,您还需要在队列中声明路径(因为它不是注册样式),就像脚本一样。。
wp_enqueue_style( \'myPluginStylesheet\', WP_PLUGIN_URL . \'/myPlugin/stylesheet.css\' );
或注册样式。。
wp_register_style( \'myPluginStylesheet\', WP_PLUGIN_URL . \'/myPlugin/stylesheet.css\' );
。。然后在需要时给它打电话。。
wp_enqueue_style( \'myPluginStylesheet\' );
如果您在一个插件页面上使用它,那么注册部分就没有什么意义了,而且直接在排队中声明路径可能更容易。。(如果要在多个位置调用脚本或样式,则只需要注册它)。
希望这就是您要查找的信息……;)