我将 html、css、js 模板转换为 wordpress 主题。为了让我的css正常工作,我只是在functions.php中添加了函数,但是为了让javascript加入队列它不起作用我尝试了很多修改但没有任何效果这是我的function.php
<?php
function load_stylesheets()
{
wp_register_style('normal',get_template_directory_uri() . '/css/normalize.css', array(), 1, 'all');
wp_enqueue_style('normal');
wp_register_style('demonstration',get_template_directory_uri() . '/css/demo.css', array(), 1, 'all');
wp_enqueue_style('demonstration');
}
add_action('wp_enqueue_scripts','load_stylesheets');
function addjs()
{
wp_register_script('anime', get_template_directory_uri() . '/js/anime.min.js', array(), 1,1, 1);
wp_enqueue_script('anime');
wp_register_script('imagesload', get_template_directory_uri() . '/js/imagesloaded.pkgd.min.js', array(), 1,1, 1);
wp_enqueue_script('imagesload');
wp_register_script('main', get_template_directory_uri() . '/js/main.js', array(), 1,1, 1);
wp_enqueue_script('main');
}
PIPIONE
MM们
慕田峪9158850