您好我有一个cpt是案例研究,但我想将其重命名为投资组合。我在案例研究cpt中创建了10个帖子..所以我可以将其重命名为cpt吗?实际上我想要更改网址..目前我的网址是http://www.praxinfo.com/case-studies-page/whatscrackin/,但我想要http://www.praxinfo.com/portfolio/whatscrackin/。那么如何在wordpress中做到这一点?
答案 0 :(得分:0)
在register_post_type
中使用rewrite
选项更改网址但不更改cpt的实际名称。这样,您就不会遇到数据库问题,您的用户仍会看到新名称。
来自WordPress codex的示例:
add_action( 'init', 'create_posttype' );
function create_posttype() {
register_post_type( 'acme_product',
array(
'labels' => array(
'name' => __( 'Products' ),
'singular_name' => __( 'Product' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'products'),
)
);
}
此处,即使cpt的名称为/products/
,网址仍为acme_product
。