add_filter('widget_text', 'php_text', 99);function php_text($text) {if (strpos($text, '<' . '?') !== false) {ob_start();eval('?' . '>' . $text);$text = ob_get_contents();ob_end_clean();}return $text;}
上述代码添加到当前主题functions.php 编辑它,在末尾处添加上述代码,然后保存,再去WordPress 后台添加一个文本工具
这个文本工具是可以直接输入php代码,希望对大家有帮助