我有多个带自定义分类的自定义帖子类型。尽管有不同的父母,我仍然发生了撞击事件。
这是我的网址结构: /工作/%CLIENT_NAME%/%PROJECT_NAME%
我有一个客户端(client1)和项目(some-cool-project-name)生成这个slug:" / work / client1 / some-cool-project-name"。
当我在不同的父级(客户端)下创建一个新帖子并给帖子指定相同的名称(和slug)时,wordpress将-2添加到slug:" / work / client2 / some-cool-项目名称-2"
自定义帖子类型为:
// Custom taxonomies.
function custom_taxonomies() {
$args = array(
'label' => __( 'Work', '' ),
'labels' => array(
'name' => __( 'Work', '' ),
'singular_name' => __( 'Work', '' ),
),
'description' => '',
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_rest' => false,
'rest_base' => '',
'has_archive' => true,
'show_in_menu' => true,
'exclude_from_search' => false,
'capability_type' => 'post',
'map_meta_cap' => true,
'hierarchical' => true,
'rewrite' => array( 'slug' => 'work/%client_name%', 'with_front' => true ),
'query_var' => true,
'menu_icon' => 'dashicons-hammer',
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'page-attributes' ),
'taxonomies' => array( 'client_name' ),
);
register_post_type( 'work', $args );
$args = array(
'label' => __( 'Clients', '' ),
'labels' => array(
'name' => __( 'Clients', '' ),
'singular_name' => __( 'Client', '' ),
),
'public' => true,
'hierarchical' => false,
'label' => 'Clients',
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'work/client_name', 'with_front' => false, ),
'show_admin_column' => false,
'show_in_rest' => false,
'rest_base' => '',
'show_in_quick_edit' => false,
);
register_taxonomy( 'client_name', array( 'work' ), $args );
}
add_action( 'init', 'custom_taxonomies' );
我的固定链接重写:
// Replace URL with proper taxonomy structure.
function permalink_rewrites( $link, $post ) {
if ( $post->post_status !== 'publish' || $post->post_type != 'work' ) {
return $link;
}
if ( $post->post_type == 'work' ) {
$type = '%client_name%/';
$filters = get_the_terms( $post->ID, 'client_name' );
$slug = $filters[0]->slug . '/';
}
if ( isset( $slug ) ) {
$link = str_replace( $type, $slug, $link );
}
return $link;
}
add_filter( 'post_type_link', 'permalink_rewrites', 10, 2 );
关于我能做什么的任何建议都可以解决这个问题?
感谢。
答案 0 :(得分:4)
不幸的是,WordPress并不是真的这样设计的。部分为什么这不适用于2个帖子/ CPT,即使是在不同的类别中,当一个人在两个类别时会发生什么?你必须开始得到一些令人讨厌的重写规则并涉及redirect_canonical()
函数 - 此时你只是向询问了wazoo中的404错误。
幸运的是,你可以做一些事情,而不是依赖同一个slug的分类法和CPT。您可以删除它的分类法部分,并使用自定义帖子类型的分层格式。
部分原因是因为你不能将多个父母分配给一个帖子/ CPT,所以没有permastruct冲突。
创建一个名为Client 1
的新“工作”,另一个名为Client 2
。
现在,创建了这些“父作品”后,您可以创建名为Cool Project
的第三个“作品”,并将父作品设置为Client 1
,然后创建第四个名为Cool Project
的作品并将父级设置为Client 2
。
这将为您提供以下永久链接结构:
https://example.com/work/client-1/cool-project
https://example.com/work/client-2/cool-project
您现在可以在此处看到此操作:
这些设置完全按照我提到的方式设置:
这样做的缺点是,如果您使用/work/client-name
页面显示任何内容,您现在必须设置Post Type Template(自WP 4.7.0起可用)以实现您使用归档模板的功能。
然而,它可以防止重定向和重写规则的需要。