首先,如果您想以网站首页为目标,您需要使用is_front_page()
. 这个is_home()
当显示博客帖子索引时,conditional返回true,该索引可能在网站首页上,也可能不在首页上。
其次,您需要将函数挂钩到适当的挂钩中,在本例中显示为wp_enqueue_scripts
.
(还有:什么是get_theme_part()
? 它是WP框架中的自定义函数吗?)
例如,您可以在functions.php
:
function mytheme_enqueue_front_page_scripts() {
if( is_front_page() )
{
wp_enqueue_script( \'homestuff\', get_theme_part( THEME_JS . \'/home.js\' ), array( \'jquery\' ), null, true );
wp_enqueue_script( \'jquerycolor\', get_theme_part( THEME_JS . \'/jquery.color.js\' ), array( \'jquery\' ), null, true );
}
}
add_action( \'wp_enqueue_scripts\', \'mytheme_enqueue_front_page_scripts\' );