阅读更多内容不适用于查询帖子

时间:2013-09-04 作者:Ollicca Mindstorm

《泰特》讲述了一切。

如果我把query_posts 如果我不这样做,它就不起作用了。

<?php // retrieve one post with an ID of 1
query_posts(\'p=27\'); 
global $more;
$more = 1;
?>
<?php while (have_posts()) : the_post(); ?>
<!-- <h4><?php the_title(); ?></h4> -->
<?php the_content(\'read more\'); ?>
<?php endwhile;?>

1 个回复
SO网友:cybmeta

具有query_posts(\'p=27\'); 您只请求ID等于27的帖子。这篇文章是否存在并且在内容中有更多标记?

另请注意(摘自Wordpress documentation):

如果要在此查询中使用“读取更多”功能,则需要将全局$More变量设置为0。

您将全局$more变量设置为1。

另外,请确保在用于显示多篇文章的模板文件中使用“更多”标记:类别、存档或索引和主页(只有当您将主页设置为在wordpress设置中显示最新博客条目时,“索引和主页”才支持“更多”标记)。

结束

相关推荐