get_available_languages

函数
get_available_languages ( $dir = null )
参数
  • (string) $dir A directory to search for language files. Default WP_LANG_DIR.
    Required:
    Default: null
返回值
  • (string[]) An array of language codes or an empty array if no languages are present. Language codes are formed by stripping the .mo extension from the language file names.
定义位置
相关方法
signup_get_available_languagesget_available_post_statuseswp_get_available_translationsget_editable_rolesget_available_post_mime_types
引入
3.0.0
弃用
-

get_available_languages函数是一个WordPress函数,用于检索当前安装的可用语言列表: 该函数返回一个对象数组,每个对象代表一种在当前WordPress安装中可以使用的语言。这些对象包含有关语言的信息,例如它的名字、本地名称和区域代码。

根据给定目录下的*.mo文件的存在,获取所有可用的语言。

默认目录是WP_LANG_DIR。

function get_available_languages( $dir = null ) {
	$languages = array();

	$lang_files = glob( ( is_null( $dir ) ? WP_LANG_DIR : $dir ) . '/*.mo' );
	if ( $lang_files ) {
		foreach ( $lang_files as $lang_file ) {
			$lang_file = basename( $lang_file, '.mo' );
			if ( 0 !== strpos( $lang_file, 'continents-cities' ) && 0 !== strpos( $lang_file, 'ms-' ) &&
				0 !== strpos( $lang_file, 'admin-' ) ) {
				$languages[] = $lang_file;
			}
		}
	}

	/**
	 * Filters the list of available language codes.
	 *
	 * @since 4.7.0
	 *
	 * @param string[] $languages An array of available language codes.
	 * @param string   $dir       The directory where the language files were found.
	 */
	return apply_filters( 'get_available_languages', $languages, $dir );
}

常见问题

FAQs
查看更多 >