Moved the site to WP on a local server



  • I transferred the site to the WP on a local server, and this is a mistake:

    Warning: Missing argument 2 for limit_words() in Z:\home\law\www\wp-content\themes\law\functions.php on line 207
    

    such function shall be in 207 rows:

    add_action( 'init', 'limit_words' );
    function limit_words($string, $word_limit)
    {
        $words = explode(" ",$string);
        return implode(" ",array_splice($words,0,$word_limit));
    }
    

    Help me, please tell me where to dig?



  • Function limit_words() Adopts two arguments. Here's the second one. $word_limit It doesn't. In line 207, the function itself is recorded. You need to dig where it's called.




Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2