我试图在一个二十七个WordPress主题中集成js和CSS代码元素。我使用入队方法,但它不起作用,所以建议我一切。
答案 0 :(得分:0)
在function.php
此代码中写下
add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
function theme_name_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() );
wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
}