0

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)

Nirmal
  • 31
  • 8

1 Answers1

0

Array is invalid.

Change this:

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

To this:

function start_el( &$output, $depth = 0, $args = array() )
Nathan Dawson
  • 18,138
  • 3
  • 52
  • 58