以下のコードは、ファイルをヘッダーに追加せず、エコーもしません。したがって、呼び出されることはありません。理由を知りたいです。
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' );