我不能让这个例子在这里工作!http://www.snilesh.com/resources/wordpress/wordpress-query_post-exclude-or-include-post-formats/
我正在尝试获取任何不是“视频”帖子格式的最新帖子。我不确定一旦设置了参数,我实际上是如何编写查询的,至少我无法让它工作。这是我的代码:
<?php
$args = array(
'tax_query' => array(
array(
'showposts' => '1',
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => 'post-format-video',
'operator' => 'NOT IN'
)
)
);
query_posts( $args );
?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<!--latest news-->
<div class="latestNews">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php if ( has_post_thumbnail()) : ?>
<a class="thumbnail" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>
<?php the_excerpt(); ?>
<a href="?cat=1">more entries</a>
<a href="<?php the_permalink() ?>">read more</a>
</div>
<?php endwhile; ?>
我不确定是否有人能发现我在那里做错了什么?!希望有任何帮助!
谢谢