Warning: implode() [function.implode]: Invalid arguments passed

前端 未结 4 1506
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 19:23

I\'m getting the error below...

Warning: implode() [function.implode]: Invalid arguments passed in \\wp-content/themes/mytheme/functions.php on line 1335

at...

4条回答
  •  借酒劲吻你
    2021-02-01 20:14

    It happens when $ret hasn't been defined. The solution is simple. Right above $tags = get_tags();, add the following line:

    $ret = array();
    

提交回复
热议问题