• Resolved Zade

    (@nothin7)


    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)
  • Thread Starter Zade

    (@nothin7)

    With debugging on, you’ll also see this on the admin side:

    Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method rowbory_qep::generate_popup() should not be called statically in /wp-includes/class-wp-hook.php on line 298

    To resolve, change line 68 of quick-edit-pages.php from:

    function generate_popup() {

    to:

    static function generate_popup() {

Viewing 1 replies (of 1 total)
  • The topic ‘Resolving the PHP warning with WP_DEBUG on’ is closed to new replies.