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

前端 未结 4 1570
伪装坚强ぢ
伪装坚强ぢ 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 19:50

    You are getting the error because $ret is not an array.

    To get rid of the error, at the start of your function, define it with this line: $ret = array();

    It appears that the get_tags() call is returning nothing, so the foreach is not run, which means that $ret isn't defined.

提交回复
热议问题