我使用以下脚本调用Jquery和Jquery UI以及自定义脚本。js。目前,它可以看到检查器中的资源,并输出标记。然而,我在页面上使用的代码是这样的。日期选择器就是不起作用。然而,如果我使用黑客脚本标记并包含我自己的jquery文件,那么我的代码就会正常工作。日期选择器工作。您可以在以下位置查看该网站:http://fiftyfity.com/place-an-order/ 这是运行wp\\u enqueue\\u脚本的版本。我被困了,我想使用排队,但它破坏了我的网站。
wp_enqueue_script
function wptuts_scripts_basic()
{
// Register the script like this for a plugin:
//wp_register_script( \'custom-script\', plugins_url( \'/js/custom-script.js\', __FILE__ ) );
// or
// Register the script like this for a theme:
wp_register_script( \'custom-script\', get_template_directory_uri() . \'/js/custom-script.js\', array(\'jquery\',\'jquery-ui-core\') );
// For either a plugin or a theme, you can then enqueue the script:
wp_enqueue_script( \'custom-script\' );
}
add_action( \'wp_enqueue_scripts\', \'wptuts_scripts_basic\' );
Ouputted Html
<script type=\'text/javascript\' src=\'http://fiftyfity.com/wp-includes/js/jquery/jquery.js?ver=1.7.1\'></script>
<script type=\'text/javascript\' src=\'http://fiftyfity.com/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.8.16\'></script>
My hacked script tag *如果我注释掉wp\\u enqueue\\u脚本,这会起作用
$url = content_url();
<script src="<?php echo $url; ?>/themes/fiftyfityNew/js/jquery-1.7.1.min.js"></script>
<script src="<?php echo $url; ?>/themes/fiftyfityNew/js/jquery-ui-1.8.17.custom.min.js"></script>