3
wp_enqueue_script()対wp_enqueue_script()でwp_register_script()を使用する場合
あなたがいつ使う必要があるか理解できませんwp_register_script()。現在、私は次のようなものを使用しています: add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ) ); function enqueue() { $handle = 'some-handle'; $js = 'http://example.com/my.js'; wp_register_script( $handle, $js ); wp_enqueue_script( $handle ); } 私は多くの読書をしました(コーデックス、ブログなど)が、最初に登録する必要があるか、いつエンキューするだけなのかを理解できません。例として、TwentyTwelveはスタイルやスクリプトを登録せず、それらをキューに登録するだけであることに気付きました。