Skip to content

Instantly share code, notes, and snippets.

@SebKay
Created September 12, 2023 09:29
Show Gist options
  • Save SebKay/692e90382498b64e970af797de051df6 to your computer and use it in GitHub Desktop.
Save SebKay/692e90382498b64e970af797de051df6 to your computer and use it in GitHub Desktop.
Get all Polylang posts that don't have a language set.
<?php
new \WP_Query([
'post_type' => ['post', 'page'],
'posts_per_page' => -1,
'lang' => '',
'fields' => 'ids',
'tax_query' => [
[
'taxonomy' => 'language',
'operator' => 'NOT EXISTS',
],
],
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment