0
以下是我的代碼中的自定義主題。不過,我在將我的custom_script附加到頁腳時遇到了問題。wp_enqueue_script創建致命錯誤
09 <?php
10 function my_scripts_method() {
11 wp_enqueue_script(
12 'custom-script',
13 get_template_directory_uri() . '/js/custom_script.js',
14 array('jquery')
15 );
16 }
17 add_action('wp_enqueue_scripts', 'my_scripts_method');
18 ?>
對我而言產生以下錯誤。
致命錯誤:不能重新聲明my_scripts_method()(在* filename_removed * .PHP先前聲明:12)* filename_removed * .PHP上線10