WordPress-CPT和分类页面上的自定义顺序

时间:2018-12-14 15:12:08

标签: php wordpress filter custom-post-type custom-taxonomy

我正在创建一个函数来订购特定的自定义帖子类型(例如:产品)。它在CPT存档页面上运行良好,但在自定义分类页面(例如类别)上不起作用:

function my_pre_get_posts( $query ) {

// do not modify queries in the admin
if( is_admin() ) {

    return $query;

}

// only modify queries for 'produit' post type
if( isset($query->query_vars['post_type']) && $query->query_vars['post_type'] == 'produit') {

    $query->set('orderby', 'meta_value');   
    $query->set('meta_key', 'irank');    
    $query->set('order', 'DESC'); 

}

// return
return $query;

}

add_action('pre_get_posts', 'my_pre_get_posts');

如何附加我的代码,以便自定义顺序也适用于我的自定义分类页面?

非常感谢

1 个答案:

答案 0 :(得分:0)

您将要使用git stash apply <stash-object-id>函数来检查它是否是您要更改其排序顺序的分类档案。所以像这样...

is_tax()