将其添加到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' );
?>
答案 0 :(得分:0)
尝试function my_theme_add_scripts()
而不是function my-theme_add_scripts()
。您不能在函数名称中使用-
。