下面的代码不会将文件添加到标题中,也不会回显 - 所以它永远不会被调用。很想知道为什么。
function image_cycle_script(){
//Load the required script for the image cycler
wp_register_script( 'cycle', get_stylesheet_directory_uri() . '/js/jquery.cycle.lite.js', array( 'jquery' ) );
wp_enqueue_script('cycle');
echo 'LOCATION:'.get_stylesheet_directory_uri() . '/js/jquery.cycle.lite.js';
}
add_action( 'wp_enqueue_scripts', 'image_cycle_script' );