gpt4 book ai didi

WordPress 自定义永久链接仅用于帖子

转载 作者:行者123 更新时间:2023-12-02 21:32:47 24 4
gpt4 key购买 nike

我的 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',
)
));

最佳答案

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

要保留您的投资组合永久链接,您应该设置 with_front当您注册此帖子类型时,设置为 false

'with_front' => bool Should the permastruct be prepended with the front base. (example: if your permalink structure is /blog/, then your links will be: false->/news/, true->/blog/news/). Defaults to true

编辑1:你可能应该 flush Wordpress rewrite rules之后。

编辑2:with_front参数是一个重写参数:

'rewrite' => array('slug' => 'portfolio', 'with_front' => false),

关于WordPress 自定义永久链接仅用于帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15617820/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com