1

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

4

1 回答 1

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);
}
于 2013-09-20T17:16:30.017 回答