我有一个wordpress网站,前几天我在functions.php文件中添加了这段代码:
我把它放在这里:
//Register Navigations
add_action( 'init', 'my_custom_menus' );
function my_custom_menus() {
register_nav_menus(
array(
'primary_nav' => __( 'Primary Navigation', 'Medico'),
'top_nav' => __( 'Top Navigation', 'Medico')
)
);
}
下面!!! / ********* WOOCOMMERCE HOOKS和CUSTOMIZATION ******** /
我想创建一个新的自定义菜单,但问题是网站现在崩溃并给我这个错误消息:
Parse error: syntax error, unexpected '<' in /home/content/59/9450659/html/eyeclarity/wp-content/themes/medico/functions.php on line 177
我进入了ftp服务器,但我在这个functions.php中看不到这段代码。
有人可以帮我吗?