我有一个自定义的帖子类型,叫做营地、事件和活动
我想在列表中显示它。
因此,当用户单击链接时,它将显示该自定义帖子类型下的所有帖子。
任何帮助都将不胜感激。
编辑
add_action(\'init\', \'activity_resources_register_post_type\');
function activity_resources_register_post_type() {
register_post_type(\'activity_resources\', array(
\'labels\' => array(
\'name\' => \'Activity Resources\',
\'singular_name\' => \'Activity Resources\',
\'add_new\' => \'Add new Activity Resources\',
\'edit_item\' => \'Edit Activity Resources\',
\'new_item\' => \'New Activity Resources\',
\'view_item\' => \'View Activity Resources\',
\'search_items\' => \'Search Activity Resources\',
\'not_found\' => \'No Activity Resources found\',
\'not_found_in_trash\' => \'No Activity Resources found in Trash\'
),
\'public\' => true,
\'has_archive\' => \'activity_resources\',
\'rewrite\' => array("slug" => "activity_resources"), // the slug for permalinks
\'supports\' => array(\'title\', \'editor\', \'thumbnail\')
));
}