最简单的方法是创建带有存档的自定义帖子类型。
<?php
register_post_type(\'resource\',
array(
// Enable Core Categories and Tags
\'taxonomies\' => array(\'category\', \'post_tag\'),
// Enable in REST API so it works with the Block Editor
\'show_in_rest\' => true,
\'label\' => \'Resources\',
\'public\' => true,
\'supports\' => array(\'title\', \'editor\', \'excerpt\', \'thumbnail\', \'revisions\'),
// Archive URL will be example.com/resources
\'has_archive\' => \'resources\',
// Posts will be at example.com/resources/postname
\'rewrite\' => array(\'slug\' => \'resources\')
)
);
?>
这将创建帖子类型本身。然后,您可以进入数据库并更改
post_type
从…起
post
到
resource
- 如果您不喜欢直接在数据库中编辑,也可以创建PHP代码来完成此操作。