esc_html__( string $text, string $domain = 'default' )
Retrieve the translation of $text and escapes it for safe use in HTML output.
描述
If there is no translation, or the text domain isn’t loaded, the original text is returned.
参数
- $text
-
(string)
(Required)
Text to translate. - $domain
-
(string)
(Optional)
Text domain. Unique identifier for retrieving translated strings.Default value: ‘default’
返回值
(string) Translated text
源代码
File: wp-includes/l10n.php
function esc_html__( $text, $domain = 'default' ) {
return esc_html( translate( $text, $domain ) );
}
更新日志
Version | 描述 |
---|---|
2.8.0 | Introduced. |
相关函数
Uses
-
wp-includes/l10n.php:
translate() -
wp-includes/formatting.php:
esc_html()
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 1You must log in to vote on the helpfulness of this note
Contributed by
izem
Use to embed translations inside HTML. This way you ensure that third party translation are sanitized and will not break the code (proper security to keep the users safe).
<h1><?php echo esc_html__( 'Title', 'text-domain' )?></h3>
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈