WordPress:自定义帖子类型导致网址错误

时间:2019-09-04 07:49:58

标签: php wordpress custom-post-type taxonomy-terms

我有一个名为products的自定义帖子类型,其定义如下:

register_post_type(
    'products',
    tp_build_post_args(
        'products', 'Product', 'Products',
        array(
            'menu_icon'     => 'dashicons-cart',
            'menu_position' => 20,
            'has_archive'   => 'products',
            'public'      => true,
            'hierarchical' => true,
            'supports' => array('editor', 'title', 'revisions', 'page-attributes'),
            'rewrite' => array ( 'slug' => 'products', 'with_front' => false )
        )
    )
);

Pages下,我有一个名为“产品”的页面,该页面具有URL(/products)。

Products自定义帖子类型下,我具有“产品”的所有子页面,即/products/test-page

但是,当我转到/products时,页面坏了,它向我显示了一个页面,其中包含Products自定义帖子类型下的所有构件。而如果我转到/products-2(只是产品页面的一个副本),就可以正常工作吗?

1 个答案:

答案 0 :(得分:0)

这是因为您的自定义帖子类型slug和页面slug相同,即产品。因此,最高优先级是自定义帖子类型。如果您要产品作为页面,则必须更改自定义帖子类型的标签。另外,更改 has_archive 插件。更改后,别忘了再次保存永久链接。