Is there a way i can display post with a taxonomy label?
I got this:
$args = array(
'posts_per_page' => 2,
'post_type' =>"works",
'post_status' => array('publish')
and i want to to something like that to display some post with the label "gamed"
$args = array(
'posts_per_page' => 2,
'post_type' =>"works",
'tax_query' => array(
array(
"singular_label" => 'gamed',
)
'post_status' => array('publish')
Thanks a lot for your help.