繁体   English   中英

具有2个帖子的Wordpress Wp_query对象仅打印一个

[英]Wordpress Wp_query object with 2 posts prints only one

我需要显示3个类别中的最新帖子,以及最后一个中的两个帖子以及另一种HTML格式。 问题是最后一个类别仅打印一个帖子,并在我可以看到两个帖子的对象上以var_dump()停止。

在这里检查功能:

function destaques( $atts ) {
extract( shortcode_atts( array(
    'id' => 0,
), $atts ) );

$id = array(6,16,10,4);
$posts = array();
$nomesCat = array();

foreach ($id as $key => $value) {
    if ($value == 4){
                    //this is the categorie with two posts
        $posts[] = new WP_Query( array('posts_per_page' => 2, 'category__in' => array($value)));
    } else {
        $posts[] = new WP_Query( array('posts_per_page' => 1, 'category__in' => array($value)));    
    }
    $nomesCat[] = get_category($value);
}
$html = '<ul class="destaques">';

foreach ($posts as $key => $value) {
    if ($value->have_posts()){
        while($value->have_posts()){
            $value->the_post();
            if ($nomesCat[$key]->cat_name == 'Colunistas') {
                                    // check for the categorie name, then call another
                                    // function, passing the wp_query object
                $html .= auxiliarColunistas($value);
                break;
            } else {
                //lots of html formatting code
                $html .= '</li>';
            }
        }
    }


}

$html .= '</ul>';
return $html; 

这是辅助函数:

function auxiliarColunistas ($posts) {
$html = '<li class="last">';

/*var_dump($posts); this returns two posts!
die;*/

$html .= '<h2>Colunistas</h2>';

if ($posts->have_posts()){

    while ($posts->have_posts()) {
        $posts->the_post();
        //more html formatting code
    }
}
$html .= '</li>';

return $html; }

为什么循环仅打印一个帖子并停止?

尝试这样做

foreach ($id as $key => $value) {
    if ($value == 4){
                    //this is the categorie with two posts
        $posts_query = new WP_Query( array('posts_per_page' => 2, 'category__in' => array($value)));
    } else {
        $posts_query = new WP_Query( array('posts_per_page' => 1, 'category__in' => array($value)));    
    }
    $nomesCat[] = get_category($value);
}
$html = '<ul class="destaques">';

        while($posts_query->have_posts()){
            if ($nomesCat[$key]->cat_name == 'Colunistas') {
                                    // check for the categorie name, then call another
                                    // function, passing the wp_query object
                $html .= auxiliarColunistas($posts_query->the_post());
                break;
            } else {
                //lots of html formatting code
                $html .= '</li>';
            }

我可以解决这一问题,改变这一行:

if ($value == 4){
                //this is the categorie with two posts
    $posts_query = new WP_Query( array('posts_per_page' => 2, 'category__in' => array($value)));

if ($value == 4){
                //this is the categorie with two posts
    $posts_query = new WP_Query( array('posts_per_page' => 3, 'category__in' => array($value)));

但是我仍然不明白为什么while循环没有得到最后的帖子。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM