我需要将默认产品排序选项更改为我网站上特定产品类别的“新颖度”。我知道你可以去WooCommerce>设置>产品>显示全局更改默认排序选项,但这不是我需要做的。我需要这样的东西:
function change_default_sorting_option(){
if(is_product_category('3555')){
//change default sorting option to newness
}
}
add_action('', 'change_default_sorting_option');
我对排序功能做的不多,所以我不确定从哪里开始。我知道这个函数应该放在我的孩子主题的functions.php。
中答案 0 :(得分:2)
这里是正确的钩子和获取特定产品类别存档页面的方法,默认排序为“新颖度”:
{{1}}
代码进入活动子主题(或活动主题)的function.php文件。经过测试和工作。
答案 1 :(得分:1)
这里有更好的工作解决方案
add_filter('woocommerce_get_catalog_ordering_args', 'woocommerce_catalog_orderby');
function woocommerce_catalog_orderby( $args ) {
if( is_product_category( 'shirts' ) ) { // <- define category slug- returns true or false
$args['orderby'] = 'meta_value_num';
$args['order'] = 'ASC'; // <- order ASC or DESC
$args['meta_key'] = '_price'; // <- _price is meta_value_num's key - required
}
return $args;
}
另请点击以下链接了解WP_Query的订单和订购方式:https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
答案 2 :(得分:0)
假设您在自定义页面模板中工作,这应该相对容易。不完全确定您的方法是否可以使用is_page()来强制更改产品的排序,但是......您可以利用全局WP_Query
创建自定义查询,然后对您的产品进行排序喜欢。这是一个例子:
<?php
$args = array(
'post_type' => 'product',
'posts_per_page' => -1, //or... set your post per page and utilize pagination if required.
'orderby' => 'title',
'order' => 'ASC',
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
global $product;
//this is where you can output your products
//which will be ordered according to the set arguments above.
endwhile;
wp_reset_query();
?>
修改强>:
如果您正在为特定类别寻找此类功能,我只需在您的系统中创建一个新页面并使用WooCommerce产品短代码。您不需要在functions.php中添加任何内容,也不需要以这种方式挂钩。以下简短代码是您可以使用的示例...例如,按标题在特定类别页面上订购产品。
[products category="yourcategory" orderby="title" ]