我有两个区域可以获取最新的条目。在第一个方面,我想获得前10个帖子。在第二个区域,我想从11号帖子开始取帖子。。。。
我有这个:
<?php
$args = array( \'numberposts\' => \'10\' );
$recent_posts = wp_get_recent_posts($args);
$featured_posts = themename_get_featured_posts();
if(!empty($featured_posts) && is_array($featured_posts))
{
$query_arr = array(
\'post__not_in\' => $featured_posts, $recent_posts,
\'paged\' => $paged,
\'suppress_filters\' => false,
);
query_posts($query_arr);
}
$key = 11;
if (have_posts()) : while (have_posts()) : the_post();
$image_thumb = \'\';
$key++;
$image_id = get_post_thumbnail_id(get_the_ID());
?>
但无论我做什么(即使我删除了第一条if语句),我都会在每个领域看到相同的帖子。。。
我怎样才能让它工作?