How to query posts from single post format on Genesis framework? I want to just show posts from gallery post format only.
I tried this query:
<?php
$recent = new WP_Query(
"taxonomy=post-format&field=slug&terms=post_format-link&posts_per_page=5"
);
while($recent->have_posts()) :
$recent->the_post();
?>
But I didn’t get what I wanted.