wordpress的文本小工具是不能直接运行php代码或者简码的。
将下列代码加入主题的functions.php中即可实现。
//让文本小工具支持简码
add_filter('widget_text', 'do_shortcode');
//让文本小工具支持php代码
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;
}
本站文章除注明转载/出处外,均为本站原创或翻译。若要转载但请务必注明出处,尊重他人劳动成果。
转载请注明出处链接 : https://www.inlojv.com/1466.html

