Created
October 16, 2020 01:44
-
-
Save dcooney/9ff784bb4e0bbb85d55fe3a0a573e540 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| global $sitepress; | |
| $current_lang = $sitepress->get_current_language(); //save current language | |
| $sitepress->switch_lang('en'); | |
| /* | |
| * WP_Query | |
| * | |
| * @return $alm_query; | |
| */ | |
| $alm_query = new WP_Query( $args ); | |
| $sitepress->switch_lang($current_lang); //restore previous language |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment