gpt4 book ai didi

javascript - CSS 和脚本未在 Wordpress 中排队

转载 作者:行者123 更新时间:2023-12-03 05:11:52 25 4
gpt4 key购买 nike

我正在尝试将我的样式和脚本排列到我的 WordPress 主题中,但是当我刷新页面时,它完全是空白的。根据我的搜索,我似乎在functions.php中正确编写了代码。有人可以检查是否有任何错误,或者告诉我是否有特定的位置可以插入此代码?

这就是我所拥有的:

function BI_Scripts() {

wp_register_style( 'bling_css', get_template_directory_uri() . '/css/style.css' );
wp_register_style( 'Font_Awesome', get_template_directory_uri() . '/css/font-awesome.css' );
wp_register_style( 'theme_font', 'https://fonts.googleapis.com/css?family=Crimson+Text|Lobster|Oleo+Script:700|Roboto:400,700' );
wp_register_script( 'jQuery_js', 'https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js', array( 'jquery' ), '3.1.1', true );
wp_register_script('bootstrapjs', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '3.3.7', true );
wp_register_script( 'main_js', get_template_directory_uri() . '/js/main.js', array(), '1.0.0', true );

wp_enqueue_style( 'bling_css' );
wp_enqueue_style( 'Font_Awesome' );
wp_enqueue_style( 'theme_font' );
wp_enqueue_script( 'jQuery_js' );
wp_enqueue_script( 'bootstrapjs' );
wp_enqueue_script( 'main_js' );
}
add_action( 'wp_enqueue_scripts', 'BI_Scripts' );

编辑:这就是我的标题中的内容

!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">

<?php wp_head(); ?>

</head>

最佳答案

感谢您的所有帮助。我尝试了一切,但最终我自己解决了。

Wordpress 附带 JQuery。所以我必须先在functions.php 中取消注册它,然后注册并入队我自己的jQuery 文件。这样做之后,就不再出现空白屏幕了。

关于javascript - CSS 和脚本未在 Wordpress 中排队,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41775657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com