引导后加载自定义css

时间:2013-12-05 作者:Barbara

我在函数中有这个。php。如何修改它,以便在bootsrap之后加载自定义css。最小css?

function register_css() {
    wp_register_style( \'bootstrap.min\', get_template_directory_uri() . \'/css/bootstrap.min.css\' );
    wp_enqueue_style( \'bootstrap.min\' );
}
add_action( \'wp_enqueue_scripts\', \'register_css\' );
我发现this 但它不起作用,我对php也不太了解,但我认为它缺少wp\\U register\\u风格的部分。

1 个回复
最合适的回答,由SO网友:Adam 整理而成

以上看起来是正确的,但是,您需要通过添加bootstrap-min 第三个dependencies参数的句柄。

function register_css() {
    wp_register_style( \'bootstrap-min\', get_template_directory_uri() . \'/css/bootstrap.min.css\' );
    wp_register_style( \'custom-css\', get_template_directory_uri() . \'/css/custom.min.css\', \'bootstrap-min\' );
    wp_enqueue_style( \'bootstrap-min\' );
    wp_enqueue_style( \'custom-css\' );
}
add_action( \'wp_enqueue_scripts\', \'register_css\' );
请参见wp_register_style 更多信息。

或者,如果您知道需要从回调函数中立即将文件排队,可以使用wp_enqueue_style 就像wp_register_style, 请参见:wp_enqueue_style

结束

相关推荐

如何根据容器宽度自动调整图像大小服务器端/无css

是否有人知道如何调整所服务图像的大小,以便图像具有内容容器宽度所决定的宽度。我的意思不是通过100%宽度的css调整图像大小,而是调整图像本身的实际尺寸和大小。例如:文章中的图像,其尺寸为400px × 300px. 但在概述中,我只需要200px × 150px. 但我不想编辑我的主题的每一部分,因为有很多不同的大小。是否有可能自动工作?