I need to query all and any pages that are created by either deleted users or users that are no longer users of the website.
Here is my query
$args = array(
'author' => '0',
'post_type' => 'page',
'orderby' => 'modified',
'order' => 'ASC',
'posts_per_page' => -1,
);
$posts = get_posts( $args );
I tried to change ‘author’ to something like ‘-1’ or ‘userdoesntexist’ and none of these seem to work. I get a list of all pages on the website instead.