如何正确地将css排入wordpress

时间:2013-10-22 15:26:22

标签: php wordpress

我正在尝试在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不会加载。谁能猜出这里的错误?

2 个答案:

答案 0 :(得分: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参数

答案 1 :(得分:0)

试试这个:

您可以添加javascript&像这样的wordpress 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文件中添加此代码。

- 感谢