Hi
I want to get an array with all urls of the images in the category ‘flora’.
I am trying this so far in my content.php in my theme:
$args = array(
'post_type' => 'attachment',
'post_status' => 'any',
'tax_query' => array(
array(
'taxonomy' => 'media_category', // your taxonomy
'field' => 'name',
'terms' => 'flora'
)
)
);
It was a wrong alert
This do happen in localhost, but i dont see the problem online, for me its ok like that.