如果你想显示一些帖子,但没有像博客那样的功能(带有上一个/下一个链接),那么这应该可以做到。
<?php global $post; $args = array( \'numberposts\' => 10, \'post_type\' => \'post\', ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?>
[act like it\'s the loop]
<?php endforeach; ?>
所以你可以做一些像。。。
<?php global $post; $args = array( \'numberposts\' => 10, \'post_type\' => \'post\', ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php if ( has_post_thumbnail() ) { echo \'<div class="featured-thumbnail">\'; the_post_thumbnail(); echo \'</div>\'; } ?>
<?php the_content(); ?>
<?php endforeach; ?>
如果我了解您想要正确完成的任务,那么这就可以了。