我正在建立一个网站,但不能找出如何改变我的自定义后类型的固定链接结构只!
我有一个自定义的职位类型称为“产品”的时刻,它有一个URL结构如下
/products/continental-rack/
我的自定义文章类型的完整代码如下:
function cpt_products() {
$labels = array(
'name' => 'Products',
'singular_name' => 'Product',
'menu_name' => 'Products',
'name_admin_bar' => 'Product',
'add_new' => 'Add New',
'add_new_item' => 'Add New Product',
'new_item' => 'New Product',
'edit_item' => 'Edit Product',
'view_item' => 'View Product',
'all_items' => 'All Products',
'search_items' => 'Search Products',
'parent_item_colon' => 'Parent Product',
'not_found' => 'No Products Found',
'not_found_in_trash' => 'No Products Found in Trash'
);
$args = array(
'labels' => $labels,
'public' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_nav_menus' => true,
'show_in_menu' => true,
'show_in_admin_bar' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-tag',
'capability_type' => 'post',
'taxonomies' => array( 'category' ),
'hierarchical' => false,
'supports' => array( 'title', 'author', 'thumbnail' ),
'has_archive' => true,
'rewrite' => array( 'slug' => 'products' ),
'query_var' => true
);
register_post_type( 'products', $args );
}
add_action( 'init', 'cpt_products' );
我已经启用了右侧的类别部分,这样我就可以选择一个类别,但是当选中一个类别时,我无法让该类别出现在永久链接结构中。
因此,我的目标永久链接结构基本上是这样的:
/%category-name%/products/continental-rack/
只是找不到方法做这件事。任何帮助都将不胜感激!
3条答案
按热度按时间ulmd4ohb1#
您可以将筛选器添加到
post_type_link
这里是正确的方法:https://wordpress.stackexchange.com/a/22490
ryevplcw2#
转到设置-〉permalink向下滚动到产品permalink并选择公共设置,然后将其添加到自定义结构/%taxonomyname%/posttypename/中
mpbci0fu3#
Возможно это будет кому-то полезно.
在这里输入译文。在这里输入译文。
翻译我的技术快速翻译我的技术/翻译我的技术:
下载地址:
另一方面,我们需要找到: