我目前正在开发Woocommerce网站的主页,在此页面上的目标是有3行显示来自不同品牌的产品。例;第1行将显示Apple产品,第2行将显示Samsung Products,第3行将显示HTC产品。
我已使用插件CPT用户界面来创建自定义分类标准'品牌'。现在,我希望使用上面的示例来仅显示特定品牌下列出的产品。
查看Woocommerce Shortcodes,我看到了:
[products limit="8" columns="4" category="hoodies, tshirts" cat_operator="AND"]
对于这个案例品牌,是否可以使用自定义分类法做这样的事情?即:
[products limit="8" columns="4" brand="apple" cat_operator="AND"]
非常感谢任何正确方向的帮助或推动!
答案 0 :(得分:1)
可以将Woocommerce [products]
短代码扩展为使用某种技巧处理任何自定义分类,例如"brand"
。
代码:
add_filter( 'woocommerce_shortcode_products_query', 'extend_products_shortcode_to_brand', 10, 3 );
function extend_products_shortcode_to_brand( $query_args, $atts, $loop_name ){
if ( ! empty($atts['class']) && strpos($atts['class'], 'brand') !== false ) {
global $wpdb;
$terms = array_map( 'sanitize_title', explode( ',', $atts['class'] ) );
array_shift( $terms );
$terms = implode(',', $terms);
$terms = str_replace(",", "','", $terms);
$ids = $wpdb->get_col( "
SELECT DISTINCT tr.object_id
FROM {$wpdb->prefix}term_relationships as tr
INNER JOIN {$wpdb->prefix}term_taxonomy as tt ON tr.term_taxonomy_id = tt.term_taxonomy_id
INNER JOIN {$wpdb->prefix}terms as t ON tt.term_id = t.term_id
WHERE tt.taxonomy LIKE 'brand' AND t.slug IN ('$terms')
" );
if ( ! empty( $ids ) ) {
if ( 1 === count( $ids ) ) {
$query_args['p'] = $ids[0];
} else {
$query_args['post__in'] = $ids;
}
}
}
return $query_args;
}
代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作。
使用
我们将在此处使用class
短代码参数:
1)一个品牌 - 显示“Apple”品牌的产品:
[products limit="8" columns="4" class="brand,Apple"]
2)多个品牌 - 显示“Apple”和“Samsung”品牌的产品:
[products limit="8" columns="4" class="brand,Apple,Samsung"]
所以类
"brand"
是必需的,需要成为第一个。每个术语都是昏迷的。