您可以使用值创建一个名为hide\\u from\\u menu的自定义字段单选按钮yes 或no t然后使用Query posts by custom fields.
然后在查询中,添加meta\\u键和meta\\u值。示例:
$args=array(
\'post_type\' => custom-post-type,
\'post_status\' => \'publish\',
\'posts_per_page\' => -1,
\'meta_key\' => \'hide_from_menus\',
\'meta_value\' => \'yes\'
);
请确保更新所有帖子(重新发布),以便其具有指定的键值。