问题描述
这是驱动我坚果,我确信这很简单,但我没有找到一个简单的结构 (一切都非常复杂) 。
我有一个自定义的帖子类型 product_listing
和 product_cat
的定制分类 (它是分级的,应该有类别) 。
我只是希望我的网址如下所示:
mysite.com/products/category1/product-name1
mysite.com/products/category2/product-name2
但对于我的生活,无论我做什么,我都会遇到可怕的 404 问题。页面工作正常,帖子工作不错,但我的自定义帖子无法正常工作。他们显示为:
mysite.com/products/product-name1
mysite.com/products/product-name2
哪个实际工作!只是我想在那里看到我的自定义分类法,我想要能够访问我已经设置的 taxonomy.php
模板:
mysite.com/products/category1/
mysite.com/products/category2/
我的 s 都不一样,也不想让他们成为。以下是我的 functions.php
文件的帖子类型和分类部分:
///// CUSTOM POST TYPES /////
// register the new post type
register_post_type( 'product_listing', array(
'labels' => array(
'name' => __( 'Products' ),
'singular_name' => __( 'Product' ),
'add_new' => __( 'Add New' ),
'add_new_item' => __( 'Create New Product' ),
'edit' => __( 'Edit' ),
'edit_item' => __( 'Edit Product' ),
'new_item' => __( 'New Product' ),
'view' => __( 'View Products' ),
'view_item' => __( 'View Product' ),
'search_items' => __( 'Search Products' ),
'not_found' => __( 'No products found' ),
'not_found_in_trash' => __( 'No products found in trash' ),
'parent' => __( 'Parent Product' ),
),
'description' => __( 'This is where you can create new products on your site.' ),
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'publicly_queryable' => true,
'exclude_from_search' => false,
'menu_position' => 2,
'menu_icon' => get_stylesheet_directory_uri() . '/images/tag_orange.png',
'hierarchical' => true,
'_builtin' => false, // It's a custom post type, not built in!
'rewrite' => array( 'slug' => 'products', 'with_front' => true ),
'query_var' => true,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions' ),
) );
//hook into the init action and call create_book_taxonomies when it fires
add_action( 'init', 'create_product_taxonomies', 0 );
//add_action('admin_init', 'flush_rewrite_rules');
//create two taxonomies, genres and writers for the post type "book"
function create_product_taxonomies() {
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => _x( 'Categories', 'taxonomy general name' ),
'singular_name' => _x( 'Category', 'taxonomy singular name' ),
'search_items' => __( 'Search Categories' ),
'all_items' => __( 'All Categories' ),
'parent_item' => __( 'Parent Categories' ),
'parent_item_colon' => __( 'Parent Categories:' ),
'edit_item' => __( 'Edit Category' ),
'update_item' => __( 'Update Category' ),
'add_new_item' => __( 'Add New Category' ),
'new_item_name' => __( 'New Category Name' ),
'menu_name' => __( 'Category' ),
);
register_taxonomy( 'product_cat', array( 'product_listing' ), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
//'rewrite' => true,
'rewrite' => array( 'slug' => '%category%', 'with_front' => true ),
) );
// Add new taxonomy, NOT hierarchical (like tags)
$labels = array(
'name' => _x( 'Scents', 'taxonomy general name' ),
'singular_name' => _x( 'Scent', 'taxonomy singular name' ),
'search_items' => __( 'Search Scents' ),
'popular_items' => __( 'Popular Scents' ),
'all_items' => __( 'All Scents' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Scent' ),
'update_item' => __( 'Update Scent' ),
'add_new_item' => __( 'Add New Scent' ),
'new_item_name' => __( 'New Scent Name' ),
'separate_items_with_commas' => __( 'Separate scents with commas' ),
'add_or_remove_items' => __( 'Add or remove scents' ),
'choose_from_most_used' => __( 'Choose from the most used scents' ),
'menu_name' => __( 'Scents' ),
);
register_taxonomy( 'scent', 'product_listing', array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
//'rewrite' => array( 'slug' => 'scents' ),
) );
}
我还有另一个 scents
的自定义分类法,我最喜欢有一些友好的 URL,但我更开放这个。我想通过去 mysite.com/products/scents
访问所有香水的清单,但不一定要分类。
有谁能够帮助我?
最佳解决方案
将 products/%product_cat%
中的 products/%product_cat%
的 slug
和您的分类学参数中的 slug
更改为 products
,然后刷新重写规则。 WordPress 现在应该处理/products/my-product-cat/post-name/
!
现在最后,我们需要帮助 WordPress 生成永久链接 (开箱即用,不会识别 Permastruct 标签%product_cat%
):
/**
* Inject term slug into custom post type permastruct.
*
* @link http://wordpress.stackexchange.com/a/5313/1685
*
* @param string $link
* @param WP_Post $post
* @return array
*/
function wpse_5308_post_type_link( $link, $post ) {
if ( $post->post_type === 'product_listing' ) {
if ( $terms = get_the_terms( $post->ID, 'product_cat' ) )
$link = str_replace( '%product_cat%', current( $terms )->slug, $link );
}
return $link;
}
add_filter( 'post_type_link', 'wpse_5308_post_type_link', 10, 2 );
有一件事要注意,这只会抓住按名称排列的第一个产品类别。如果您将多个类别分配给单个产品,我可以轻松地更改如何确定在固定链接中使用哪一个。
Lemme 知道你如何得到这个,我们可以解决其他的问题!
次佳解决方案
感谢 @TheDeadMechanic,你的答案帮助我,但只是部分。我想做同样的事情 @RodeoRamsey 要求,但嵌套类别 (即:mysite.com/products/category1/child-category-1/grandchild-category-1/product-name
),您的解决方案不起作用。
我终于想出了一个扩展的解决方案,我的问题的工作,所以如果有人需要嵌套类别/子类别,你可以看到一个 detailed solution 在我自己的问题。希望它帮助别人,并感谢初步的步骤。
第三种解决方案
我不确定 wp 是否支持开箱即用的结构,但您可以轻松地创建自己的重写规则。
在这里查看一个以前的答案 Author url rewrite 。
您可以更改行
$newrules['author/([^/]+)/songs/?$'] = 'index.php?post_type=songs&author=$matches[1]';
像一样
$newrules['products/([^/]+)/([^/]+)/?$'] = 'index.php?post_type=product_listing&product_cat=$matches[1]&name=$matches[2]';
这里的 product_cat 部分可能是多余的 – 我不知道是否需要。
您可以添加任何您喜欢的规则,并且它们将优先于内置的规则。
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。