"product_query" ["post_type"]=> array(2) {
[0]=> string(7) "freebie"
[1]=> string(7) "product"
}
function atc_front_page( $query ) {
if ( $query->is_admin || ! $query->is_main_query() ) {
return;
}
if( $query->is_tax('product_formats') ) {
$query->set( 'post_type', array( 'freebie', 'product' ) );
}
}
add_action( 'pre_get_posts', 'atc_front_page');
Тестировать сложно, да. Аппроксимация, сэр.