您在哪里使用我们看到的有问题的jQuery代码?如果您在header(head)中使用它,我建议您使用:
jQuery(document).ready(function(){
jQuery(\'.homepage_buttons_text a[href^="http://danrobertsgroup.com/?attachment_id=1037"]\').each(function(){
jQuery(this).html("<h1 class=\'homepage_button_title\'>Workouts</h1><span class=\'homepage_button_title\'>Books / DVD\'s / Downloads</span>");
});
});
如果您使用的是页脚中的代码,仍然建议使用上述替换,并且对于每个
add_action
挂钩您可以使用优先级参数:
function child_theme_enqueue_scripts() {
wp_enqueue_script(
\'child-scripts\',
get_stylesheet_directory_uri() . \'/js/child-scripts.js\',
array( \'jquery\' ),
\'1.0\',
true
);
}
add_action( \'wp_enqueue_scripts\', \'child_theme_enqueue_scripts\', 30 );