allowed_tags()
Display all of the allowed tags in HTML format with attributes.
描述
This is useful for displaying in the comment area, which elements and attributes are supported. As well as any plugins which want to display it.
返回值
(string) HTML allowed tags entity encoded.
源代码
File: 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 );
}
更新日志
Version | 描述 |
---|---|
1.0.1 | Introduced. |
User Contributed Notes
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note
Contributed by
Nilambar Sharma
Display allowed HTML tags
$allowed_html_tags = allowed_tags(); echo $allowed_html_tags;
Output:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote code=""> <code> <code> <del datetime=""> <em> <i> <q code=""> <s> <strike> <strong>
你可能对这些文章感兴趣:
- wordpress函数category_description()用法示例
- wordpress函数atom_enclosure()用法示例
- wordpress函数apply_filters_ref_array()用法示例
- wordpress函数apply_filters_deprecated()用法示例
- wordpress函数apply_filters()用法示例
- wordpress函数admin_url()用法示例
- wordpress函数add_utility_page()用法示例
- wordpress函数add_users_page()用法示例
- wordpress函数add_theme_support()用法示例
- wordpress函数add_theme_page()用法示例
- wordpress函数add_submenu_page()用法示例
- wordpress函数add_shortcode()用法示例
- wordpress函数add_settings_section()用法示例
- wordpress函数add_settings_field()用法示例
如有疑问,请前往问答中心反馈!
反馈