

Hip 1, Bo, 16yr, Donkey, Jack
Halter Broke, , Traffic Safe, Sound
// Force-filter Hip Numbers query by ?consignor_id=<term_id> or return nothing.
// 1) Replace 123 with your actual Query ID number.
// 2) Replace 'consignor' with your Consignors taxonomy slug if different.
add_filter( 'jet-engine/query-builder/query/123/args', function( $args ) {
if ( is_admin() ) return $args;
$tid = isset($_GET['consignor_id']) ? (int) $_GET['consignor_id'] : 0;
if ( $tid > 0 ) {
$args['tax_query'] = array(
array(
'taxonomy' => 'consignor',
'field' => 'term_id',
'terms' => array( $tid ),
'include_children' => false,
)
);
} else {
// no consignor chosen yet → show nothing in Hip Number
$args['post__in'] = array( 0 );
}
return $args;
} );
Need to make an Edit?
Please email us at dixieauction1@gmail.com to make edits to Catalog entries