正在尝试使用featured
标签查询工作正常,但始终显示所有内容。。不是之前的内容,更多的链接,这是我想要的。
这是我的密码。
$query = new WP_Query(\'numberposts=1&orderby=date&tag=featured\');
// The loop!
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<div class="post-meta-bar">
<div class="date-meta">By <?php the_author(); ?> on <?php the_time(\'j F Y\') ?></div>
<div class="comment-meta"><a href="<?php the_permalink() ?>#comments" rel="bookmark" title="Link to <?php the_title_attribute(); ?>"><?php comments_number( \'Remove\' ); ?></a></div>
</div>
<div class="entry">
<?php the_content(\'Read More\'); ?>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts are featured.</p>
<?php endif; ?>
在编辑器中,我肯定有
<!--more-->
链接,但它总是显示所有内容。
我做错了什么?