我需要查询由已删除用户或不再是网站用户的用户创建的所有和任何页面。
这是我的问题
$args = array(
\'author\' => \'0\',
\'post_type\' => \'page\',
\'orderby\' => \'modified\',
\'order\' => \'ASC\',
\'posts_per_page\' => -1,
);
$posts = get_posts( $args );
我试图将“author”改为“-1”或“userdoesntexist”,但这些似乎都不起作用。我得到了网站上所有页面的列表。