在函数中包含以下代码之前。php
add_filter(\'widget_text\',\'execute_php\',100);
function execute_php($html){
if(strpos($html,"<"."?php")!==false){
ob_start();
eval("?".">".$html);
$html=ob_get_contents();
ob_end_clean();
}
return $html;
}
然后我将WP更新为4.4.1版,现在它不再工作了。还有其他解决方案吗?