让WordPress文本小工具支持简码(shortcodes)和PHP代码

燕山网络科技2017-10-06 21:49:131109

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;}

分享到:

本文链接:https://h.finchui.com/wordpress/2402.html 转载需授权!

最新发布

燕山网络科技在线咨询

上班时间:9:00-22:00
周六、周日:14:00-22:00
wechat
扫一扫二维码,添加客服微信

15639981097

上班时间:9:00-22:00
周六、周日:14:00-22:00

扫一扫二维码,添加客服微信