Style.css 和 Bootstrap CDN 未在 Function.php 中加载
Style.css and Bootstrap CDN not loading in Function.php
<?php
function load_css(){
wp_enqueue_style('bootstrap-cdn-css', 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css');
wp_enqueue_script('bootstrap-cdn-js', 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js', 'jquery', false, true);
wp_enqueue_style('my_style', get_stylesheet_directory_uri().'/style.css');
}
add_action('wp_enqueue_scripts', 'load_css');
在style.css中,我给了body{ color: orange;它没有向我显示 index.php 中标题的橙色,这意味着 style.css 未正确加载。我想为页脚加载 boostrap.js 文件并且 style.css 必须正常工作。有人body可以帮我解决这个错误吗?
错误的文件名 function.php
。是Functions.php
。问题解决了。 :)
<?php
function load_css(){
wp_enqueue_style('bootstrap-cdn-css', 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css');
wp_enqueue_script('bootstrap-cdn-js', 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js', 'jquery', false, true);
wp_enqueue_style('my_style', get_stylesheet_directory_uri().'/style.css');
}
add_action('wp_enqueue_scripts', 'load_css');
在style.css中,我给了body{ color: orange;它没有向我显示 index.php 中标题的橙色,这意味着 style.css 未正确加载。我想为页脚加载 boostrap.js 文件并且 style.css 必须正常工作。有人body可以帮我解决这个错误吗?
错误的文件名 function.php
。是Functions.php
。问题解决了。 :)