change acfe_single_order
-
I have a custom taxonomy, and I want to allow user to click and change order, I’am using this code
function topico_pre_get_posts( $query ){ if( !is_admin() && is_tax('topico') && $query->is_main_query() && $query->is_tax() ){ $order = isset($_POST['order_custom']) ? $_POST['order_custom'] : 'DESC'; $query->set('acfe_single_order', $order); $query->set('acfe_single_orderby', 'title'); return $query; } } add_action( 'pre_get_posts', 'topico_pre_get_posts' );
But it seems impossible to change acfe_single_order
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘change acfe_single_order’ is closed to new replies.