• Hi,

    I’m getting this error – Is there a way to fix this?

    [15-Dec-2018 16:30:24 UTC] PHP Strict Standards: Declaration of kcWalker_Posts::start_el() should be compatible with Walker::start_el(&$output, $object, $depth = 0, $args = Array, $current_object_id = 0) in /home/nortmed/public_html/wp-content/plugins/kc-settings/kc-settings-inc/options.php on line 173

    currently on wp v 4.9.9

Viewing 1 replies (of 1 total)
  • Hello @dealtek

    Since there’s not an available update, on kc-settings-inc/options.php you’ve to manually update the following lines:

    from
    function start_el( &$output, $post, $depth, $args, $id = 0 ) {

    to:
    function start_el( &$output, $post, $depth = 0, $args = [], $id = 0 ) {

    In my case, lines 172 and 161

Viewing 1 replies (of 1 total)
  • The topic ‘PHP Strict Standards error – Is there a way to fix this?’ is closed to new replies.