如何在特定的帖子类型中添加基本/正面slug/url?

时间:2017-03-10 作者:James Maiden

我目前拥有:

我的网站。com/custom-post-type-1/postname

我的网站。com/custom-post-type-2/postname

我想实现:

我的网站。com/my base slug/custom-post-type-1/postname

我的网站。com/my base slug/custom-post-type-2/postname

我不想"my-base-slug" 显示除指定的帖子类型以外的任何内容。

这有可能吗?怎么可能?

2 个回复
SO网友:Milo

您可以通过slug 当您register your post type.

$args = array(
    \'rewrite\' => array( \'slug\' => \'my-base-slug/custom-post-type-1\' ),
    // your other args...
);
register_post_type( \'mycpt\', $args );

SO网友:geraldo

如果您对使用插件很满意,只需看看Custom Post Type PermalinksPermalinks Customizer.

相关推荐

Permalinks - Archives

WordPress文档说:WordPress offers you the ability to create a custom URL structure for your permalinks and archives. https://codex.wordpress.org/Settings_Permalinks_Screen 我看到此屏幕将如何为特定帖子/页面创建永久链接,但我没有看到此设置屏幕上关于如何为存档帖子/页面创建链接的任何其他详细信息。有人能澄清一下吗?