【发布时间】:2014-01-12 18:00:03
【问题描述】:
我的 wordpress 网页出现此错误:
wordpress 致命错误:在第 202 行的 /home/xxx/public_html/wp-content/themes/xxx/functions.php 中删除了调用时传递引用
以下是相关代码:
200 class pont_Walker extends Walker_Nav_Menu{
201 function end_el(&$output, $category, $depth, $args){
202 $output=preg_replace("/([^>]{1})(<\/a>)/", "$1<span></span>$2", &$output);
203 $output.="</li>\n";
204 }
【问题讨论】:
-
删除
preg_replace行中$output之前的&。另请参阅重复项。