wp_just_in_time_script_localization

函数
wp_just_in_time_script_localization ( No parameters )

wp_just_in_time_script_localization: 这个函数用于在WordPress中对JavaScript文件进行本地化。它允许插件和主题只在需要时向脚本添加本地化数据。这可以通过减少每个页面上需要加载的数据量来提高性能。

在打印时加载本地化数据,而不是初始化。

这些本地化需要的信息甚至可能无法通过init加载。

function wp_just_in_time_script_localization() {

	wp_localize_script(
		'autosave',
		'autosaveL10n',
		array(
			'autosaveInterval' => AUTOSAVE_INTERVAL,
			'blog_id'          => get_current_blog_id(),
		)
	);

	wp_localize_script(
		'mce-view',
		'mceViewL10n',
		array(
			'shortcodes' => ! empty( $GLOBALS['shortcode_tags'] ) ? array_keys( $GLOBALS['shortcode_tags'] ) : array(),
		)
	);

	wp_localize_script(
		'word-count',
		'wordCountL10n',
		array(
			/*
			 * translators: If your word count is based on single characters (e.g. East Asian characters),
			 * enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'.
			 * Do not translate into your own language.
			 */
			'type'       => _x( 'words', 'Word count type. Do not translate!' ),
			'shortcodes' => ! empty( $GLOBALS['shortcode_tags'] ) ? array_keys( $GLOBALS['shortcode_tags'] ) : array(),
		)
	);
}

常见问题

FAQs
查看更多 >