我正在尝试加载样式。css,但其余。css应该首先包括在内。我不明白为什么要重置。不包括css
function addMyScript() {
wp_register_style(\'style\', get_template_directory_uri().\'/style.css\');
wp_register_style(\'reset\', get_template_directory_uri().\'/reset.css\');
wp_enqueue_style(\'style\', get_template_directory_uri().\'/style.css\', array( \'reset\' ), );
}
add_action(\'wp_head\', \'addMyScript\');
此外,我在一些博客上看到,人们在排队之前通常不注册样式表或javascript。。。这样可以吗?