Created
April 18, 2019 15:03
-
-
Save eguicciardi/6267b5832e1e827615e3a40d19d4ca12 to your computer and use it in GitHub Desktop.
Wordpress + WPML + get_posts() get by current language or force language
This file contains 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
/* Example args for get_posts() */ | |
$query_args = array( | |
'posts_per_page' => -1, | |
'orderby' => 'title', | |
'order' => 'ASC', | |
'post_status' => 'publish', | |
'suppress_filters' => false | |
); | |
$posts_array = get_posts( $query_args ); | |
/* Force spcific language */ | |
global $sitepress; | |
$sitepress->switch_lang($lang_code); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment