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