我正在尝试构建自己的轻量级插件,以注册自定义帖子类型。我遇到的问题是,我可以创建一个帖子类型,但我不知道如何保存以前的帖子类型,然后使用每个新条目创建另一个帖子类型。
function create_custom_post_type() {
if (isset($_POST[\'tme_post_type_singular\'])) {
update_option(\'tme_post_type_singular\', $_POST[\'tme_post_type_singular\']);
$value = $_POST[\'tme_post_type_singular\'];
}
$value = get_option(\'tme_post_type_singular\', \'\');
if (isset($value)) {
$custom_posts = array(
"slug" => $value,
"name" => $value . \'s\',
"singular_name" => $value,
"is_public" => true,
"has_archive" => false,
);
register_post_type( $value,
array(
\'labels\' => array(
\'name\' => __( $custom_posts[\'name\'] ),
\'singular_name\' => __( $custom_posts[\'singular_name\'] )
),
\'public\' => true,
\'has_archive\' => true,
)
);
}
}
add_action( \'init\', \'create_custom_post_type\' );
如何更改此代码以允许我在每次输入新条目时创建多个帖子类型?