Skip to content

Instantly share code, notes, and snippets.

@hauge75
hauge75 / functions.php
Created April 11, 2016 23:15
WPML language selector in menu - hide current language
<?php
// Filter wp_nav_menu() to add additional links and other output
add_filter('wp_nav_menu_items', 'new_nav_menu_items', 10, 2);
function new_nav_menu_items($items, $args) {
// add $args->theme_location == '[location]' in the conditional if we want to specify the menu location.
if (function_exists('icl_get_languages') && $args->theme_location == 'primary-menu') {
$languages = icl_get_languages('skip_missing=0');
if(!empty($languages)){