让WordPress小工具支持PHP代码功能
之前介绍了给wordpress小工具添加短代码功能,今天给大家分享下怎么给小工具添加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; }
转载请注明:《让WordPress小工具支持PHP代码功能》