Nazwa tagu
// WP_Query arguments
$args = array(
'tax_query' => array(
array(
'taxonomy' => 'tag',
'field' => 'name',
),
),
);
// The Query
$my_query = new WP_Query( $args );
// The Loop
if ( $my_query->have_posts() ) {
while ( $my_query->have_posts() ) {
$my_query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();