您可以添加OR
与元查询的关系,并获取没有_wp_page_template
元密钥:
$args = array(
\'post_type\' => \'page\',
\'posts_per_page\' => -1,
\'order\' => \'ASC\',
\'orderby\' => \'title\',
\'meta_query\' => array(
\'relation\' => \'OR\',
array(
\'key\' => \'_wp_page_template\',
\'value\' => \'template-rubrique.php\',
\'compare\' => \'!=\',
),
array(
\'key\' => \'_wp_page_template\',
\'compare\' => \'NOT EXISTS\',
)
)
);