WordPress功能函数allowed_tags()

WordPress功能函数allowed_tags(),使用属性显示HTML格式的所有允许的标签。 用法: a…

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 );

}

更新日志:
WordPress功能函数allowed_tags() (https://www.wpmee.com/) WordPress开发教程 第1张
用户贡献的笔记

(由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>

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册