Bandana Face Masks In Stock Online!
Cities and towns all over the country have begun to require people to wear face masks when out in public.
We found an affordable bandana face mask that is in stock on Amazon right now. Click below to order!
CHAMER Mask, Neck Gaiter Shield Scarf Balaclava Bandana Sun Protection UPF 50+UV Protective Cool Ice Silk Fabric Breathable Lightweight for...
Last update was on: August 12, 2025 3:39 PM
- SUN PROTECTION FACE MASK - This Scarf can block more than 90% of UV passed the UPF50 + test.Wear it as a face mask to protect your face get burned from direct sunlight,also they keep your nose and mouth clean Prevent inhalation of dust.
- COOL ICE SILK FABRIC - It's very Soft and Breathable.Fabric is very Lightweight.You'll feel Comfortable wearing it without any Burden.
- NEW DESIGN IS SUITABLE FOR MANY OCCASIONS - Newest sun face shields protection mask,new ear hangers style .Perfect for Drive,Running,Golf,Commute,Fishing,Hiking, Landscaping,and any Outdoor Sport or Activity requiring All Day Sun Protection
TODAYS TOP AMAZON PRICE DROPS
1
KidKraft Uptown Wooden Modern Dollhouse with Lights & Sounds, Pool and 36 Accessories, Gift for Ages 3+ 49.25" x 25.25" x 46.25"
▼$137.49
69%
OFF
Amazon.com
More Amazon Deals
[the-post-grid id=”1132143″ title=”amazon”]
MORE AMAZON DEALS
Looking for More Face Masks Be sure to check out our Face Mask section below!
This post contains affiliate links. Purchases may earn me a commission at no extra cost to you.
<?php
function wpb_postsbycategory() {
// the query
$the_query = new WP_Query( array(
'category_name' => 'travel',
'posts_per_page' => 5
) );
// The Loop
if ( $the_query->have_posts() ) {
$string .= '<ul class="postsbycategory widget_recent_entries">';
while ( $the_query->have_posts() ) {
$the_query->the_post();
if ( has_post_thumbnail() ) {
$string .= '<li>';
$string .= '<a href="' . get_the_permalink() .'" rel="bookmark">' . get_the_post_thumbnail($post_id, array( 50, 50) ) . get_the_title() .'</a></li>';
} else {
// if no featured image is found
$string .= '<li><a href="' . get_the_permalink() .'" rel="bookmark">' . get_the_title() .'</a></li>';
}
}
} else {
// no posts found
$string .= '<li>No Posts Found</li>';
}
$string .= '</ul>';
return $string;
/* Restore original Post Data */
wp_reset_postdata();
}
// Add a shortcode
add_shortcode('categoryposts', 'wpb_postsbycategory');