WPML
wpml_ls_exclude_in_menu
类型
filter
WPML 版本
4.3.12

说明

某些主题会使用 AJAX 加载特定菜单,例如移动端菜单。在这种情况下,WPML 不会包含语言切换器。此过滤器允许主题作者向其通过 AJAX 加载的菜单添加语言切换器。

参数

$isExcluded
bool 从菜单中排除语言切换器。

使用示例

示例
add_filter( 'wpml_ls_exclude_in_menu', function( $isExcluded ) {
	if ( isset( $_POST['action'] ) && 'my_ajax_load_menu_action' === $_POST['action'] ) {
		return false;
	}

	return $isExcluded;
} );

wpml_decode_custom_field, wpml_footer_language_selector, wpml_add_language_form_field, wpml_is_rtl, wpml_alternate_hreflang, wpml_head_langs, wpml_must_translate_canonical_url, wpml_browser_redirect_language_params, wpml_active_languages, wpml_encode_custom_field

所有 29 个 全站语言信息 钩子 →