• This seems to take care of the PHP notice you might be getting on this plugin:

    The each() function is deprecated. This message will be suppressed on further calls
    Type: PHP Deprecated
    Line: 2222
    File: wp-content/plugins/dynamic-to-top/inc/cssmin-v3.0.1.php

    In the file noted, at line 2222, change this:

    while (list($i, $path) = each($paths))

    to this:

    foreach ($paths as $i => $path)

    • This topic was modified 5 years, 2 months ago by essaysnark.
  • The topic ‘here’s a fix for the php notice on the each() function’ is closed to new replies.