Parse error: syntax error, unexpected ')', expecting '(' in C:\wamp\www\home\wordpress\wp-content\themes\tourpackage-v2-00\include\plugin\dropdown-menus.php on line 133
Code:
function start_el (&$output, $depth = 0, $args = Array)
Parse error: syntax error, unexpected ')', expecting '(' in C:\wamp\www\home\wordpress\wp-content\themes\tourpackage-v2-00\include\plugin\dropdown-menus.php on line 133
Code:
function start_el (&$output, $depth = 0, $args = Array)
Array
is invalid.
Change this:
function start_el (&$output, $depth = 0, $args = Array)
To this:
function start_el( &$output, $depth = 0, $args = array() )