WordPress的小工具里面有一个文本小工具,默认只能支持 HTML 代码,如果能支持PHP代码,那么可以实现一些功能,下面教大家如何让 WordPress 文本小工具支持PHP代码:
「后台」→「外观」→「编辑」→ 「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;
}
# 更多WordPress技巧,请关注「WordPress专题」