WordPress功能函数allowed_tags()
WordPress功能函数allowed_tags(),使用属性显示HTML格式的所有允许的标签。
用法:
allowed_tags()
描述
这对于在注释区域中显示很有用,该区域支持哪些元素和属性。以及任何想要显示它的插件。
返回
(string)HTML允许标签实体编码。
来源
文件: wp-includes/general-template.php
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 );
}
更新日志:
用户贡献的笔记
(由Nilambar Sharma于5年前贡献)
显示允许的HTML标签
$allowed_html_tags = allowed_tags();
echo $allowed_html_tags;
输出:
<a href=”” title=””> <abbr title=””> <acronym title=””> <b> <blockquote cite=””> <cite> <code> <del datetime=””> <em> <i> <q cite=””> <s> <strike> <strong>