在wordpress Twenty Eleven主题中如何在一篇帖子后显示更多内容而不在帖子页面中写任何<!--read more-->
答案 0 :(得分:0)
进入wordpress管理面板,点击阅读下的阅读,选择摘要而不是全文。那会对你有所帮助。
信息中心 - &gt;设置 - &gt;阅读并点击&#34;摘要&#34;而不是&#34;全文&#34;
修改强> Feed的上述设置。用于在主页中显示,当您添加帖子时,将光标放在要添加的位置&#34;更多&#34;标签,然后单击Alt + Shift + T或单击左侧的按钮拼写检查器它将在您的帖子上插入更多标签。我认为这可能有用..
答案 1 :(得分:0)
在帖子中使用the_excerpt()函数并添加过滤器excerpt_more并添加readmore ..链接。 这个博客使用了相同的功能,由我开发[最新的智能手机应用程序] [1]
[1]:http://latestsmartphoneapps.com这里在索引页面上给出所有帖子摘要并且阅读更多..链接被给出然后显示完整帖子。
如果你想要这样的功能,请告诉我。
答案 2 :(得分:0)
答案 3 :(得分:0)
将此代码用于摘录。
<?php query_posts('cat=ID'.'&showposts=NO. OF POST') ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_post_thumbnail(); ?>
<p><?php echo substr(get_the_excerpt(), 0,65).' [...]'; ?></p>
<a href="<?php the_permalink(); ?>">Read More...</a>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<?php endif;?>