我正在开发wordpress网站,我在主页上显示最新的3个帖子项目(基于类别),我想提供“更多新闻”链接,以便在单独的页面中查看所有帖子。我怎么能显示它?
答案 0 :(得分:0)
<?php
query_posts( 'cat=-category_id&posts_per_page=3' );
while (have_posts()) : the_post();
the_title();
the_content( 'Read the full post »' ); or the_excerpt();
endwhile;
wp_reset_query();
<a href="pass category url">Caegory Link</a>
?>
对于分页,您可以使用wp page navi插件。