第一次尝试在Wordpress中注册和排队样式和脚本,并且无法弄清楚它为何无法工作。
知道我可能做错了什么吗?这是我的functions.php文件:
<?php
function add_theme_scripts() {
wp_register_style( 'bootstrap.min', get_template_directory_uri() .'/css/bootstrap.min.css');
wp_register_script( 'bootstrap.min-js', get_template_directory_uri() .'/css/bootstrap.min.js');
wp_register_script( 'script', get_template_directory_uri() .'/css/script.js');
wp_register_script( 'jquery-3.1.1', get_template_directory_uri() .'/css/jquery-3.1.1.js');
wp_enqueue_style( 'bootstrap.min' );
wp_enqueue_script( 'bootstrap.min-js' );
wp_enqueue_script( 'script' );
wp_enqueue_script( 'jquery-3.1.1' );
}
add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );
?>
这是我的header.php文件:
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js no-svg">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
答案 0 :(得分:1)
谢谢大家!
事实证明这是非常愚蠢的......在我的工作中有一个重复的文件系统FTP ...所以根本没有代码相关:/
我很感激答案:)再次感谢。
答案 1 :(得分:0)
我认为问题在于句柄 bootstrap.min
您需要通过从中替换。(点)来更改句柄。请改用 - (连字符)。