我的首页是一个带有wordpress的静态页面。我仍然希望能够链接到博客文章列表。这是怎么做到的?
答案 0 :(得分:0)
创建一个名为page-home.php的新页面模板文件 最好的方法是将index.php中的代码复制并粘贴到新页面中...... 在此页面内创建一个新模板调用..
<?php
/**
Template Name: home
*/
?>
在此页面内粘贴你的index.php代码..
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<?php the_content('<p>Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p>Pages: ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php endwhile; endif; ?>
这将像往常一样显示您的主页,然后您必须创建一个新的wordpress数据库调用,以显示您想要的所有类别的最新帖子或显示所有类别的所有帖子..
<?php
//The Query
query_posts('posts_per_page=5&cat=YOUR_CATEGORY_HERE');
//The Loop
if ( have_posts() ) : while ( have_posts() ) : the_post();
..
endwhile; else:
..
endif;
//Reset Query
wp_reset_query();
?>
这将循环播放帖子并显示您的最新帖子..