🇺🇸 US Orders Only
All items in this section are priced in USD. Local US order fulfillment & flat-rate shipping may or may not be applied at checkout or before order fulfillment.
- * Accepted Payments: Zelle & PayPal (USD)
- * Include Order ID in payment memo
function custom_us_store_checkbox_list() {
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => 'us-store',
),
),
);
$loop = new WP_Query( $args );
if ( ! $loop->have_posts() ) {
return '
No products found.
'; } ob_start(); ?>