Resolving the PHP warning with WP_DEBUG on
-
If you turn on debugging, you’ll see this on all pages:
Strict Standards: Declaration of rowbory_qep_Walker::start_el() should be compatible with Walker_PageDropdown::start_el(&$output, $page, $depth = 0, $args = Array, $id = 0) in /wp-content/plugins/quick-edit-popup/quick-edit-pages.php on line 156
To resolve, change line 132 of quick-edit-pages.php from:
function start_el(&$output, $page, $depth, $args) {
to:
function start_el(&$output, $page, $depth = 0, $args = array(), $id = 0) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Resolving the PHP warning with WP_DEBUG on’ is closed to new replies.