我一直在尝试利用WP_Query
或get_posts
拿出一篇既属于特定类别又属于特定帖子格式的最新帖子。
<?php
$singargs = array(
\'numberposts\' => 1,
\'tax_query\' => array(
\'relation\' => \'AND\',
array(
\'taxonomy\' => \'category\',
\'field\' => \'slug\',
\'terms\' => array ( \'gift-of-the-day\' ),
),
array(
\'taxonomy\', => \'post_format\',
\'field\' => \'slug\',
\'terms\' => array( \'aside\'),
)
)
);
$singPost = new WP_Query( $singargs );
foreach ( $singPost as $post ) : setup_postdata($post); ?>
<aside>
<h2><?php the_title(); ?></h2>
</aside>
<?php endforeach; wp_reset_postdata(); ?>
我做错了什么?