以下是我的自定义主题代码中的内容。但是,我在将 custom_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 ?>
为我产生以下错误。
致命错误:无法在第 10 行的*filename_removed* .php 中重新声明 my_scripts_method()(之前在*filename_removed* .php:12 中声明)