Custom Language Switcher for Translatepress
// Get out of my page! wp_dequeue_style('trp-language-switcher-v2-css'); wp_dequeue_script('trp-language-switcher-js-v2-js'); //add Language Switcher to mobile menu top add_action( 'wpex_hook_mobile_menu_toggle_top', function() { /*$languages = trp_custom_language_switcher(); print_r($languages);*/ echo '<div class="lang" data-no-translation>'.do_shortcode('[link_for_lang lang="en_US" label="EN"]').' | '.do_shortcode('[link_for_lang lang="de_DE_formal" label="DE"]').'</div>'; } ); /* * Function to return…
