WordPress文本小工具默认是不支持支持简码(shortcodes)和PHP代码的,要让它支持,只需将下面的代码添加到当前主题的 functions.php 文件即可:
1 2 3 4 5 6 7 8 9 10 11 12 13 | //让文本小工具支持简码 add_filter('widget_text', 'do_shortcode'); //让文本小工具支持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; } |
//让文本小工具支持简码 add_filter('widget_text', 'do_shortcode'); //让文本小工具支持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文本小工具支持简码(shortcodes)和PHP代码就介绍到这了。与其指望遇到一个谁,不如指望自己能够吸引那样的人;与其指望每次失落的时候会有正能量出现温暖自己,不如指望自己变成一个正能量满满的人;与其担心未来,不如现在好好努力。更多相关让WordPress文本小工具支持简码(shortcodes)和PHP代码内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!