修改wordpress小工具支持php代码

wordpress小工具插件默认不支持php代码,有些场景是需要使用php代码的,修改如下,亲测可用。

后台-》外观-》主题编辑器-》functions.php 新增以下代码:

//使小工具支持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;
}

然后在外观-》小工具-》文本,就可以在里面输入<?php ?>代码块了

原创博客,转载请标明出处:http://www.geekapp.cn/archives/643.html
上一篇
下一篇