Walker_Nav_Menu出错

时间:2015-05-05 22:11:03

标签: php wordpress wordpress-plugin

解析错误:语法错误,意外')',期待'('在C:\ wamp \ www \ home \ wordpress \ wp-content \ themes \ tourpackage-第133行的v2-00 \ include \ plugin \ dropdown-menus.php

代码:

function start_el(& $ output,$ depth = 0,$ args = Array)

1 个答案:

答案 0 :(得分:0)

Array无效。

改变这个:

function start_el (&$output, $depth = 0, $args = Array)

对此:

function start_el( &$output, $depth = 0, $args = array() )