Skip to content

Instantly share code, notes, and snippets.

@eguicciardi
Created April 18, 2019 15:03
Show Gist options
  • Save eguicciardi/6267b5832e1e827615e3a40d19d4ca12 to your computer and use it in GitHub Desktop.
Save eguicciardi/6267b5832e1e827615e3a40d19d4ca12 to your computer and use it in GitHub Desktop.
Wordpress + WPML + get_posts() get by current language or force language
/* 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