16

我的 Wordpress 安装具有三种帖子类型:页面、帖子和作品集。目前的结构如下:

  • 页:example.com/page-name,
  • 发布列表页面:example.com/blog
  • 个人帖子example.com/post-name
  • 投资组合列表页面:example.com/portfolio
  • 个人投资组合职位:example.com/portfolio/portfolio-name

我想改变的是个别帖子的永久链接,但没有别的。我希望它成为 example.com/blog/post-name。

我找不到说明如何在不影响其他类型的情况下进行此更改的文档。

编辑:我当前的永久链接结构设置为/%postname%/,在阅读设置下,我的帖子页面设置为博客。

register_post_type('portfolio', array(  
'label' => 'Portfolio Items',
'description' => '',
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'capability_type' => 'post',
'hierarchical' => true,
'rewrite' => array('slug' => 'portfolio'),
'with_front' => false,
'query_var' => false,
'has_archive' => true,
'exclude_from_search' => false,
'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes'),
'taxonomies' => array('category','post_tag'),
'labels' => array (
    'name' => 'Portfolio Items',
    'singular_name' => 'Portfolio Item',
    'menu_name' => 'Portfolio Items',
    'add_new' => 'Add Portfolio Item',
    'add_new_item' => 'Add New Portfolio Item',
    'edit' => 'Edit',
    'edit_item' => 'Edit Portfolio Item',
    'new_item' => 'New Portfolio Item',
    'view' => 'View Portfolio Item',
    'view_item' => 'View Portfolio Item',
    'search_items' => 'Search Portfolio Items',
    'not_found' => 'No Portfolio Items Found',
    'not_found_in_trash' => 'No Portfolio Items Found in Trash',
    'parent' => 'Parent Portfolio Item',
)
));
4

1 回答 1

46

您只需将其设置/blog/%postname%/为永久链接结构,这不会更改您的页面永久链接。

为了保持您的投资组合永久链接,您应该在注册此帖子类型时设置with_front为。false

'with_front' => bool永久结构是否应该与前基地一起使用。(例如:如果您的永久链接结构是/blog/,那么您的链接将是:false->/news/, true->/blog/news/)。默认为真

编辑 1:之后您可能应该刷新 Wordpress 重写规则

编辑 2:with_front参数是一个rewrite参数:

'rewrite' => array('slug' => 'portfolio', 'with_front' => false),
于 2013-03-25T16:03:59.867 回答