WordPress评论允许标签显示

时间:2013-09-20 17:11:25

标签: php wordpress

我需要知道allowed_tags()函数的工作原理以及为什么它没有记录在wordpress.org页面上。这个功能是弃用还是什么?用它来显示用户可以在评论中使用的标签是不错的主意?...

1 个答案:

答案 0 :(得分:1)

function allowed_tags() {
    global $allowedtags;
    $allowed = '';
    foreach ( (array) $allowedtags as $tag => $attributes ) {
        $allowed .= '<'.$tag;
        if ( 0 < count($attributes) ) {
            foreach ( $attributes as $attribute => $limits ) {
                $allowed .= ' '.$attribute.'=""';
            }
        }
        $allowed .= '> ';
    }
    return htmlentities($allowed);
}