入队样式表和引导

时间:2017-08-04 作者:Cihat

我正在努力让这种风格排队。css和引导。css文件。我尝试了很多解决方案,但没有一个奏效。我也在视频中尝试过,但没有成功:https://youtu.be/mtOW2J7zOSk?t=6m28s

谁能告诉我我做错了什么吗?

function load_styles() {
wp_enqueue_style( \'bootstrap-min\', get_template_directory_uri() . \'/assets/css/bootstrap.min.css\', array(), null);
wp_enqueue_style( \'bootstrap-theme\', get_template_directory_uri() . \'/assets/css/bootstrap-theme.min.css\', array( \'bootstrap-min\' ), null );
wp_enqueue_style( \'style\', get_template_directory_uri() . \'/style.css\');
}

add_action(\'wp_enqueue_scripts\', \'load_styles\');
目录:

Directory

2 个回复
SO网友:DHL17

使用wp_head(); 之前</head> 在里面header.php

SO网友:Prakash Dwivedi

我建议您使用以下语法:

//Load the theme CSS
function theme_styles() {
    wp_enqueue_style( \'bootstrap\', get_template_directory_uri() . \'/css/bootstrap.min.css\');
    wp_enqueue_style( \'main\', get_template_directory_uri() . \'/style.css\');
}

add_action( \'wp_enqueue_scripts\', \'theme_styles\' );

结束

相关推荐