テーマを開発していて、wp_enqueue_script を機能させようとしています。興味深いのは、何も表示されないことです。それは何もしません。これが私のセットアップです:
functions.php には次のものがあります。
function named_scripts() {
global $named_options;
if( is_admin() ) return;
wp_deregister_script( 'jquery' );
wp_register_script( 'screen', tz_JS . '/screen.js', array( 'jquery' ) );
wp_enqueue_script( 'screen' );
wp_enqueue_script( 'bootstrap', tz_JS . '/bootstrap/bootstrap.js', array( 'jquery' ) );
wp_register_style( 'custom-style', get_template_directory_uri() . '/css/custom-style.css', array(), '20120208', 'all' );
wp_enqueue_style( 'custom-style' );
}
add_action( 'init', 'named_scripts' );
header.php で私が呼び出す
named_scripts();
そして HTML では、何も表示されません。