制作自定义 Post 类型的分层永久链接扁平化
Making Custom Post Type Hierarchical Permalinks Flat
基本上我一直在努力让我的永久链接看起来像这样:
/recipes/postid/postname
而不是有可能变成这样的东西:
/recipes/postparent/postparent/postparent/postparent/postname
用户可以在前端创建作为其他 post 子项的 post。这可以继续下去,我不希望永久链接太长。
我能够使用下面的代码从永久链接中删除所有父 post 名称。但是,如果有人创建了一个已经存在的 post 名称,这将不起作用。
我希望能够更改永久链接以在其中包含 post id,这样就不会发生这种情况,但我无法弄清楚。感谢您的帮助!
代码如下:
function Recipes() {
$labels = array(
'name' => _x( 'Recipes', 'Post Type Recipes', 'recipes' ),
'singular_name' => _x( 'Recipe', 'Post Type Singular Name', 'Recipe' ),
'menu_name' => __( 'Recipes', 'recipes' ),
'name_admin_bar' => __( 'Recipes', 'recipes' ),
'archives' => __( 'Recipes Archives', 'recipes' ),
'parent_item_colon' => __( 'Parent Recipe', 'recipes' ),
'all_items' => __( 'All Recipes', 'recipes' ),
'add_new_item' => __( 'Add New Recipe', 'recipes' ),
'add_new' => __( 'Add Recipe', 'recipes' ),
'new_item' => __( 'New Recipe', 'recipes' ),
'edit_item' => __( 'Edit Recipe', 'recipes' ),
'update_item' => __( 'Update Recipe', 'recipes' ),
'view_item' => __( 'View Recipe', 'recipes' ),
'search_items' => __( 'Search Recipes', 'recipes' ),
);
$args = array(
'label' => __( 'Recipes', 'Recipes' ),
'description' => __( 'Recipes', 'recipes' ),
'labels' => $labels,
'supports' => array(
'title',
'thumbnail',
'comments',
'editor',
'revisions'),
'taxonomies' => array( 'category', 'recipes-tag' ),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-editor-ul',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'show_in_rest' => true,
'rest_controller_class' => 'WP_REST_Posts_Controller',
'rewrite' => array( 'slug' => 'recipes' ),
);
register_post_type( 'recipes', $args );
add_rewrite_rule(
'^recipes/([^/]+)/?$',
'index.php?post_type=recipes&name=$matches[1]',
'top'
);
}
add_action( 'init', 'Recipes', 0 );
function bvt_recipes_flatten_hierarchies( $post_link, $post ) {
if ( 'recipes' != $post->post_type ) {
return $post_link;
}
$uri = '';
foreach ( $post->ancestors as $parent ) {
$uri = get_post( $parent )->post_name . "/" . $uri;
}
return str_replace( $uri, '', $post_link );
}
add_filter( 'post_type_link', 'bvt_recipes_flatten_hierarchies', 10, 2 );
更新
我明白了。以下是一些更改,以防其他人遇到此问题。
function Recipes() {
$labels = array(
'name' => _x( 'Recipes', 'Post Type Recipes', 'recipes' ),
'singular_name' => _x( 'Recipe', 'Post Type Singular Name', 'Recipe' ),
'menu_name' => __( 'Recipes', 'recipes' ),
'name_admin_bar' => __( 'Recipes', 'recipes' ),
'archives' => __( 'Recipes Archives', 'recipes' ),
'parent_item_colon' => __( 'Parent Recipe', 'recipes' ),
'all_items' => __( 'All Recipes', 'recipes' ),
'add_new_item' => __( 'Add New Recipe', 'recipes' ),
'add_new' => __( 'Add Recipe', 'recipes' ),
'new_item' => __( 'New Recipe', 'recipes' ),
'edit_item' => __( 'Edit Recipe', 'recipes' ),
'update_item' => __( 'Update Recipe', 'recipes' ),
'view_item' => __( 'View Recipe', 'recipes' ),
'search_items' => __( 'Search Recipes', 'recipes' ),
);
$args = array(
'label' => __( 'Recipes', 'Recipes' ),
'description' => __( 'Recipes', 'recipes' ),
'labels' => $labels,
'supports' => array(
'title',
'thumbnail',
'comments',
'editor',
'revisions'),
'taxonomies' => array( 'category', 'recipes-tag' ),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-editor-ul',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'show_in_rest' => true,
'rest_controller_class' => 'WP_REST_Posts_Controller',
// 'rewrite' => array( 'slug' => 'recipes' ),
);
register_post_type( 'recipes', $args );
add_rewrite_rule(
'recipes/([a-z-]+)/([0-9]+)?$',
'index.php?post_type=recipes&name=$matches[1]&p=$matches[2]',
'top' );
}
add_action( 'init', 'Recipes', 0 );
function change_post_type_link( $link, $post = 0 ){
if ( $post->post_type == 'recipes' ){
return home_url( 'recipes/'. $post->post_name .'/'. $post->ID );
} else {
return $link;
}
}
add_filter('post_type_link', 'change_post_type_link', 10, 2);
基本上我一直在努力让我的永久链接看起来像这样:
/recipes/postid/postname
而不是有可能变成这样的东西:
/recipes/postparent/postparent/postparent/postparent/postname
用户可以在前端创建作为其他 post 子项的 post。这可以继续下去,我不希望永久链接太长。
我能够使用下面的代码从永久链接中删除所有父 post 名称。但是,如果有人创建了一个已经存在的 post 名称,这将不起作用。
我希望能够更改永久链接以在其中包含 post id,这样就不会发生这种情况,但我无法弄清楚。感谢您的帮助!
代码如下:
function Recipes() {
$labels = array(
'name' => _x( 'Recipes', 'Post Type Recipes', 'recipes' ),
'singular_name' => _x( 'Recipe', 'Post Type Singular Name', 'Recipe' ),
'menu_name' => __( 'Recipes', 'recipes' ),
'name_admin_bar' => __( 'Recipes', 'recipes' ),
'archives' => __( 'Recipes Archives', 'recipes' ),
'parent_item_colon' => __( 'Parent Recipe', 'recipes' ),
'all_items' => __( 'All Recipes', 'recipes' ),
'add_new_item' => __( 'Add New Recipe', 'recipes' ),
'add_new' => __( 'Add Recipe', 'recipes' ),
'new_item' => __( 'New Recipe', 'recipes' ),
'edit_item' => __( 'Edit Recipe', 'recipes' ),
'update_item' => __( 'Update Recipe', 'recipes' ),
'view_item' => __( 'View Recipe', 'recipes' ),
'search_items' => __( 'Search Recipes', 'recipes' ),
);
$args = array(
'label' => __( 'Recipes', 'Recipes' ),
'description' => __( 'Recipes', 'recipes' ),
'labels' => $labels,
'supports' => array(
'title',
'thumbnail',
'comments',
'editor',
'revisions'),
'taxonomies' => array( 'category', 'recipes-tag' ),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-editor-ul',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'show_in_rest' => true,
'rest_controller_class' => 'WP_REST_Posts_Controller',
'rewrite' => array( 'slug' => 'recipes' ),
);
register_post_type( 'recipes', $args );
add_rewrite_rule(
'^recipes/([^/]+)/?$',
'index.php?post_type=recipes&name=$matches[1]',
'top'
);
}
add_action( 'init', 'Recipes', 0 );
function bvt_recipes_flatten_hierarchies( $post_link, $post ) {
if ( 'recipes' != $post->post_type ) {
return $post_link;
}
$uri = '';
foreach ( $post->ancestors as $parent ) {
$uri = get_post( $parent )->post_name . "/" . $uri;
}
return str_replace( $uri, '', $post_link );
}
add_filter( 'post_type_link', 'bvt_recipes_flatten_hierarchies', 10, 2 );
更新
我明白了。以下是一些更改,以防其他人遇到此问题。
function Recipes() {
$labels = array(
'name' => _x( 'Recipes', 'Post Type Recipes', 'recipes' ),
'singular_name' => _x( 'Recipe', 'Post Type Singular Name', 'Recipe' ),
'menu_name' => __( 'Recipes', 'recipes' ),
'name_admin_bar' => __( 'Recipes', 'recipes' ),
'archives' => __( 'Recipes Archives', 'recipes' ),
'parent_item_colon' => __( 'Parent Recipe', 'recipes' ),
'all_items' => __( 'All Recipes', 'recipes' ),
'add_new_item' => __( 'Add New Recipe', 'recipes' ),
'add_new' => __( 'Add Recipe', 'recipes' ),
'new_item' => __( 'New Recipe', 'recipes' ),
'edit_item' => __( 'Edit Recipe', 'recipes' ),
'update_item' => __( 'Update Recipe', 'recipes' ),
'view_item' => __( 'View Recipe', 'recipes' ),
'search_items' => __( 'Search Recipes', 'recipes' ),
);
$args = array(
'label' => __( 'Recipes', 'Recipes' ),
'description' => __( 'Recipes', 'recipes' ),
'labels' => $labels,
'supports' => array(
'title',
'thumbnail',
'comments',
'editor',
'revisions'),
'taxonomies' => array( 'category', 'recipes-tag' ),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-editor-ul',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'show_in_rest' => true,
'rest_controller_class' => 'WP_REST_Posts_Controller',
// 'rewrite' => array( 'slug' => 'recipes' ),
);
register_post_type( 'recipes', $args );
add_rewrite_rule(
'recipes/([a-z-]+)/([0-9]+)?$',
'index.php?post_type=recipes&name=$matches[1]&p=$matches[2]',
'top' );
}
add_action( 'init', 'Recipes', 0 );
function change_post_type_link( $link, $post = 0 ){
if ( $post->post_type == 'recipes' ){
return home_url( 'recipes/'. $post->post_name .'/'. $post->ID );
} else {
return $link;
}
}
add_filter('post_type_link', 'change_post_type_link', 10, 2);