get_language_attributes

函数
get_language_attributes ( $doctype = 'html' )
参数
  • (string) $doctype Optional. The type of HTML document. Accepts 'xhtml' or 'html'. Default 'html'.
    Required:
    Default: 'html'
返回值
  • (string) A space-separated list of language attributes.
定义位置
相关方法
language_attributesthe_title_attributeget_admin_page_titleget_page_statusespage_attributes_meta_box
引入
4.3.0
弃用
-

get_language_attributes: 这个函数用来检索当前WordPress站点中HTML标签的语言属性。这些属性包括语言代码,文本方向,以及任何其他与语言相关的属性。

获取’html’标签的语言属性。

建立一套HTML属性,包含页面的文本方向和语言信息。

function get_language_attributes( $doctype = 'html' ) {
	$attributes = array();

	if ( function_exists( 'is_rtl' ) && is_rtl() ) {
		$attributes[] = 'dir="rtl"';
	}

	$lang = get_bloginfo( 'language' );
	if ( $lang ) {
		if ( 'text/html' === get_option( 'html_type' ) || 'html' === $doctype ) {
			$attributes[] = 'lang="' . esc_attr( $lang ) . '"';
		}

		if ( 'text/html' !== get_option( 'html_type' ) || 'xhtml' === $doctype ) {
			$attributes[] = 'xml:lang="' . esc_attr( $lang ) . '"';
		}
	}

	$output = implode( ' ', $attributes );

	/**
	 * Filters the language attributes for display in the 'html' tag.
	 *
	 * @since 2.5.0
	 * @since 4.3.0 Added the `$doctype` parameter.
	 *
	 * @param string $output A space-separated list of language attributes.
	 * @param string $doctype The type of HTML document (xhtml|html).
	 */
	return apply_filters( 'language_attributes', $output, $doctype );
}

常见问题

FAQs
查看更多 >