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');