检查您的header.php 它应该包含<?php wp_head(); ?> 交割前</head> 标签
检查您的footer.php 它应该包含<?php wp_footer(); ?> 交割前</body> 标签
您还需要将函数挂钩到wp_enqueue_scripts 动作挂钩,然后添加wp_enqueue_script() 和wp_enqueue_style() 在该功能内部。e、 g;
function add_theme_scripts_styles() {
wp_enqueue_style( \'style-name\', \'path_to_the_style.css\' );
wp_enqueue_script( \'script-name\', \'path_to_the_script.js\', array(\'jquery\'), \'1.0.0\', true );
}
add_action( \'wp_enqueue_scripts\', \'add_theme_scripts_styles\' );