Skip to content

Instantly share code, notes, and snippets.

@andrii-kvlnko
Last active August 2, 2021 22:37
Show Gist options
  • Save andrii-kvlnko/caeeb9c57cc4755c8cb03c694f5973ad to your computer and use it in GitHub Desktop.
Save andrii-kvlnko/caeeb9c57cc4755c8cb03c694f5973ad to your computer and use it in GitHub Desktop.
WordPress | Polylang | Set all posts to default language
$posts = get_posts(
[
'post_type' => 'post',
'numberposts' => - 1,
'lang' => ''
]
);
$posts_ids = wp_list_pluck( $posts, 'ID' );
foreach ( $posts_ids as $post_id ) {
pll_set_post_language( $post_id, pll_default_language() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment