我想将html模板更改为wordpress

时间:2019-07-20 08:07:57

标签: wordpress

我将css和jquery的链接从header.php和footer.php移到了enqueue.php,并在functions.php中调用了enqueue.php,但它没有在我的网站中加载css和jquery! !!!

<?php

    function tecno_js_cs()
    {
         wp_enqueue_style('bootstrap',get_template_directory_uri().'/css/bootstrap.css', array(),'all'); 
         wp_enqueue_style('main',get_template_directory_uri().'/css/main.css', array(),  'all');  
         wp_enqueue_style('responsive',get_template_directory_uri().'/css/responsive.css', array(),'all');  
         wp_enqueue_style('style',get_template_directory_uri().'/css/style.css', array(),'all');  


         wp_enqueue_script( 'jquery', get_template_directory_uri() . '/js/jquery.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'popper', get_template_directory_uri() . '/js/popper.min.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'bootstrap_min', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'mCustomScrollbar', get_template_directory_uri() . '/js/jquery.mCustomScrollbar.concat.min.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'fancybox', get_template_directory_uri() . '/js/jquery.fancybox.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'appear', get_template_directory_uri() . '/js/appear.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'owl', get_template_directory_uri() . '/js/owl.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'wow', get_template_directory_uri() . '/js/wow.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'jquery-ui', get_template_directory_uri() . '/js/jquery-ui.js', array('jquery'), '1.0.0', true );
         wp_enqueue_script( 'script', get_template_directory_uri() . '/js/script.js', array('jquery'), '1.0.0', true );

    }

    add_action('wp_enqueue_scripts','tecno_js_cs');


?>



1 个答案:

答案 0 :(得分:0)

无需为此创建函数,您可以使用header.php本身调用CSS文件。只需以以下格式调用它即可:

<?php bloginfo('template_url'); ?>/css/bootstrap.css

并通过以下方式调用footer.php中的脚本:

<?php bloginfo('template_url'); ?>/js/jquery.js