如何为每个产品类别页面显示不同的侧边栏?

时间:2017-11-17 19:33:55

标签: wordpress woocommerce

我使用woocommerce插件。我将尝试在产品类别页面中添加小部件选择选项。这些可能与否? 提前谢谢。

add_filter( 'avf_custom_sidebar', 'enfold_customization_custom_sidebar', 10, 1 );
function enfold_customization_custom_sidebar( $custom_sidebar ) {
     if ( is_product_category( 'rings' ) ) { $custom_sidebar = 'Ring Sidebar'; }
else { $custom_sidebar = 'Earring Sidebar'; }
     return $custom_sidebar;
}

但这些代码不起作用。我添加了两个类别的戒指和耳环,两个类别的侧边栏显示不同。

0 个答案:

没有答案