wordpress的text widget默认是不能执行php代码的,有插件能提供专门的php text widget,但是嫌麻烦,所以找了个简单的方法,在functions.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;
}