Skip to content

Instantly share code, notes, and snippets.

@llakewood
llakewood / WPML Nav Hack
Created February 9, 2021 18:00
We had a network wide nav in Blog 1 that would not translate to French. WPML Translation Management must be installed for this to work.
<?php
/* Problem: We had a network wide nav in Blog 1 that would not translate to French.
WPML Translation Management must be installed for this to work. */
//Determine which menu to serve (sql or codex)
function serve_wpml_menu($term_taxonomy_id, $post_parent, $callback) {
if($callback) {
if(ICL_LANGUAGE_CODE === 'en') {
$callback();