0

我正在尝试在 WordPress 中排队 css。这是我的代码:

function adding_styles()
{
    wp_register_script( 'jquery-ui-css', 'http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css');
    // Register the style like this for a plugin:
    wp_register_style( 'custom-style', plugins_url( '/css/custom-style.css', __FILE__ ), array(), '20120208', 'all' );

    // For either a plugin or a theme, you can then enqueue the style:
    wp_enqueue_style( 'jquery-ui-css' );
    // For either a plugin or a theme, you can then enqueue the style:
    wp_enqueue_style( 'custom-style' );
}
add_action( 'wp_enqueue_scripts', 'adding_styles' );

但是,jquery-ui.css 不会加载。有人能猜出这里的错误吗?

4

2 回答 2

0

我相信您需要添加 CSS 文件的路径 -

wp_enqueue_style('jquery-ui-css',get_stylesheet_uri());

编辑 -

它显然适用于 URL -

wp_enqueue_style( 'jquery-ui-css', http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css );

参考 - wp_enqueue_style

寻找$src参数

于 2013-10-22T15:34:57.990 回答
0

尝试这个:

您可以像这样在 wordpress 中添加 javascript 和 css

function load_custom_wp_admin_js() {
        wp_enqueue_script('custom_wp_admin_js', plugins_url() . '/dynamic-headers/dynamic-header.js');
    }

    add_action('admin_enqueue_scripts', 'load_custom_wp_admin_js');

在 function.php 文件中添加此代码。

- 谢谢

于 2013-10-23T12:57:05.060 回答