我认为您想要的是创建Worpress所称的“自定义帖子类型”。请看一下the Post Type page in the Codex 这解释了什么是帖子类型以及如何创建自定义类型。
基本上,以下是创建对象自定义帖子类型的代码:
add_action( \'init\', \'create_post_type\' );
function create_post_type() {
register_post_type( \'object\',
array(
\'labels\' => array(
\'name\' => __( \'Objects\' ),
\'singular_name\' => __( \'Object\' )
),
\'public\' => true,
\'has_archive\' => true,
)
);
}
旁注:在您的截图中,WordPress版本非常旧(3.3或其他版本)。请升级至最新版本以利用这些新功能。