产品页面上的痕迹导航在为产品使用多个类别时不反映当前 url/slug



我的Wordpress网站使用Woocommerce来销售产品。但是,当您为一个产品分配多个产品类别并访问产品页面(将Product Permalinks设置为Shop base with category)时,会发生意想不到的事情。指向(父)类别的breadcrumb链接总是相同的,不反映导航的url。(这和这里描述的问题是一样的)

问题总结:

tbody> <<tr>
导航到 Breadcrumb link 期望的Breadcrumb link
/shop/category-1/sample-product/第二类第1类
/shop/category-2/sample-product/第二类第二类

(g)发生了什么事?

产品页面上的面包屑由woocommerce_breadcrumb()函数生成。这反过来又通过WC_Breadcrumb->generate()

在代码中进一步遍历,您最终进入add_crumbs_single()函数,其中woocommerce_breadcrumb_product_terms_args过滤器应用于获取的产品项的排序。(参见wp_get_post_termsWP_Term_Query::__construct()了解更多信息)

从代码中可以清楚地看出,他们优先考虑具有最高parent值的术语,换句话说,具有数据库中最新添加的父项的术语。

解决方案1

由于此产品将始终相同,您可能希望在主题的function.php(或使用自定义插件)中添加一个过滤器,以覆盖此行为。

:
function prioritize_current_url_cat_in_breadcrumbs( $args ) {
// Only if we're on a product page..
if ( is_product() ) {
// ..and there's a product category slug in the navigated url..
$product_cat_slug = get_query_var( 'product_cat', '' );
if ( ! empty($product_cat_slug) ) {
// ..which we can find
$product_cat = get_term_by( 'slug', $product_cat_slug, 'product_cat', ARRAY_A );
if ( ! empty($product_cat) ) {
// Then only get that current product category to start the breadcrumb trail
$args['term_taxonomy_id'] = $product_cat['term_taxonomy_id'];
}
}
}
return $args;
}
add_filter( 'woocommerce_breadcrumb_product_terms_args', 'prioritize_current_url_cat_in_breadcrumbs' );

add_crumbs_single()函数的其余部分将负责遍历类别的父类等直到Home。

解决方案2

或者,您可以使用woocommerce_breadcrumb_main_term过滤器来更改用于面包屑路径的"主要术语"。过滤器函数接收2个参数:主项(作为WP_Term)和包含找到的所有产品类别的WP_Term数组。它返回一个项,因此您可以在数组中搜索并选择您想要开始breadcrumb的正确项。

function prioritize_current_url_cat( $first_term, $all_terms ) {
if ( is_product() ) {
$product_cat_slug = get_query_var( 'product_cat', '' );
if ( ! empty($product_cat_slug) ) {
// Get the WP_Term with the current slug
$filtered_terms = array_values( array_filter($all_terms, function($v) use ($product_cat_slug) {
return $v->slug === $product_cat_slug;
}) );
if ( ! empty($filtered_terms) ) {
return $filtered_terms[0];
}
}
}
// Fallback to default
return $first_term;
}
add_filter( 'woocommerce_breadcrumb_main_term', 'prioritize_current_url_cat', 10, 2 );

希望这有助于任何人搜索几个小时,并通过源代码行工作…!

额外:修复归档页面上的永久链接

要在产品存档页面上解决同样的问题,您可以钩入post_type_link过滤器,并用正确的段塞替换永久链接的%product_cat%部分,如下所示:

/**
* Set product link slugs to match the page context,
* for products with multiple associated categories.
*
* For example:
*   when viewing Category A, use '/category-a/this-product/'
*   when viewing Category B, use '/category-b/this-product/'
*/
function my_plugin_product_url_use_current_cat( $post_link, $post, $leavename, $sample ) {
// Get current term slug (used in page url)
$current_product_term_slug = get_query_var( 'product_cat', '' );
if ( empty ( $current_product_term_slug ) ) {
return $post_link;
}
if ( is_product_category() ) {
// Get current term object
$current_product_term = get_term_by( 'slug', $current_product_term_slug, 'product_cat' );
if ( FALSE === $current_product_term ) {
return $post_link;
}
// Get all terms associated with product
$all_product_terms = get_the_terms( $post->ID, 'product_cat' );
// Filter terms, taking only relevant terms for current term
$matching_or_descendant_terms = array_filter( array_map( function( $term ) use ( $current_product_term ) {
// Return term if it is the current term
if ( $term->term_id === $current_product_term->term_id ) {
return [ TRUE, $term ];
}
// Return term if one of its ancestors is the current term (highest hierarchy first)
$parent_terms = array_reverse( get_ancestors( $term->term_id, 'product_cat' ) );
foreach ( $parent_terms as $parent_term_id ) {
if ( $parent_term_id === $current_product_term->term_id ) {
return [ FALSE, $term ];
}
}
// Leave out all others
return NULL;
}, $all_product_terms ) );
if ( count( $matching_or_descendant_terms ) > 0 ) {
// Sort terms (directly associated first, descendants next)
usort( $matching_or_descendant_terms, function( $a, $b ) {
if ( $a[0] === $b[0] ) {
return 0;
} else if ( TRUE === $a[0] ) {
return -1;
} else {
return 1;
}
} );
// Get entire slug (including ancestors)
$slug = get_term_parents_list( $matching_or_descendant_terms[0][1]->term_id, 'product_cat', [
'format' => 'slug',
'separator' => '/',
'link' => false,
'inclusive' => true,
] );
// Set url slug to closest child term of current term
// or current term (if directly associated)
$post_link = str_replace('%product_cat%/', $slug, $post_link);
}
} else if ( is_product() ) {
$post_link = str_replace('%product_cat%', $current_product_term_slug, $post_link);
}
return $post_link;
}
add_filter( 'post_type_link', 'my_plugin_product_url_use_current_cat', 10, 4 );

解释

正如@Markos提到的,我们试图找出最合乎逻辑和最直观的方法来做到这一点。

基本上,它检查当前产品类别(来自url的段塞)是否与显示的产品直接关联。如果是这样,使用该段符作为产品页面的链接。(使用上述解决方案之一,面包屑反映了直观导航的url路径。)

如果当前查看的产品类别与产品没有直接关联,它将查找第一个匹配的后代(子)类别,并使用该段符作为到产品页面的链接。

这样,用户总是可以看到他们是如何进入当前产品页面的,并且可以很容易地导航回类别。

注意:如果这段代码没有改变任何东西,尝试一个更早的钩子优先级和/或检查$post_link变量是否包含%product_cat%模板部分。

在与Philip进行了长时间的交谈并排除了商店有多层类别时的故障情况(谢谢Philip)之后,我发现以下永久链接的方法适合我。

function my_plugin_product_url_use_current_cat( $post_link, $post, $leavename, $sample ) {
if ( is_product_category() || is_product() ) {
$product_cat_slug = get_query_var( 'product_cat', '' );
// get all the category of products
$terms = get_the_terms ( $post->ID, 'product_cat' );

foreach($terms as $term){
$term_slug = $term->slug;
// check if category page belongs to the category of the product
if($term_slug == $product_cat_slug){
$post_link = str_replace('%product_cat%', $term_slug, $post_link);
return $post_link;
}
// or category page is a parent category of the product
else{
$all_parents = get_ancestors($term->term_id, 'product_cat');
foreach($all_parents as $cat_id){
$cat_term = get_term( $cat_id, 'product_cat' );
if($cat_term->slug == $product_cat_slug){
$post_link = str_replace('%product_cat%', $term_slug, $post_link);
return $post_link;
}
}
}
}
}
return $post_link;
}
add_filter( 'post_type_link', 'my_plugin_product_url_use_current_cat', 9, 4 );

相关内容

  • 没有找到相关文章

最新更新