为什么在重新加载后,functions.php不起作用,空白页面

时间:2015-03-16 17:28:18

标签: php wordpress

将其添加到functions.php后,我收到错误(白页),我有开放标签php和关闭。

<?php

add_theme_support('menus');


function my-theme_add_scripts() {
    wp_enqueue_script( 'google-map', 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false', array(), '3', true );
    wp_enqueue_script( 'google-map-init', get_template_directory_uri() . '/js/google-maps.js', array('google-map', 'jquery'), '0.1', true );
}

add_action( 'wp_enqueue_scripts', 'my-theme_add_scripts' );

?>

1 个答案:

答案 0 :(得分:0)

尝试function my_theme_add_scripts()而不是function my-theme_add_scripts()。您不能在函数名称中使用-