阅读更多链接不适用于自定义查询

时间:2014-06-26 作者:markstewie

正在尝试使用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--> 链接,但它总是显示所有内容。

我做错了什么?

2 个回复
SO网友:markstewie

终于为其他有同样问题的人找到了答案。

对于像我这样的自定义查询,使用WP\\u Query more link功能在默认情况下是关闭的。要打开它。。。这对我有用。

<?php global $more; $more = 0; the_content(\'Read More\'); ?>

SO网友:Jignesh Patel

在编辑器中放置“阅读更多”链接。请参见屏幕截图中的。

enter image description here

结束

相关推荐