最近我将我的网站转移到 wordpress 并在这样做时我通过函数在我的 wordpress 页脚中排队 javascript,但它没有加载到浏览器中。
我的 function.php 代码:
function NewBiz_scripts() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_script( 'script', get_template_directory_uri() . '/js/main.js', array ('jquery'), NULL ,true);
wp_enqueue_style( 'animate',get_template_directory_uri() . '/lib/animate/animate.css' );
wp_enqueue_style( 'animate-min',get_template_directory_uri() . '/lib/animate/animate.min.css' );
wp_enqueue_style( 'bootstrap',get_template_directory_uri() . '/lib/bootstrap/css/bootstrap.css' );
wp_enqueue_style( 'bootstrap.min',get_template_directory_uri() . '/lib/bootstrap/css/bootstrap.min.css' );
wp_enqueue_script('bootstrap-js-bundle' . get_template_directory_uri() . '/lib/bootstrap/js/bootstrap.bundle.min.js',array(),NULL,true);
wp_enqueue_script('bootstrap-js-min' . get_stylesheet_uri() . '/lib/bootstrap/js/bootstrap.min.js',NULL,true);
wp_enqueue_script('counterup' . get_template_directory_uri() . '/lib/counterup/counterup.js', NULL, NULL ,true);
wp_enqueue_script('easing' . get_template_directory_uri() . '/lib/easing/easing.js', NULL, NULL ,true);
wp_enqueue_script('easing.min' . get_template_directory_uri() . '/lib/easing/easing.min.js' , NULL,NULL , true);
wp_enqueue_style ('font-awesome' . get_template_directory_uri() . '/lib/font-awesome/css/font-awesome.css');
wp_enqueue_style ('font-awesome.min'. get_template_directory_uri() . '/lib/font-awesome/css/font-awesome.min.css');
}
add_action( 'wp_enqueue_scripts', 'NewBiz_scripts' );
?>
<?php
$theme_name_images = get_bloginfo('stylesheet_directory') . '/img/';
?>
只有 main.js 正在加载 rest 而不是正在加载。
请有人可以帮助我找出我做错了什么,我是wordpress的新手。谢谢。
开满天机
芜湖不芜
相关分类