0

3 つのカテゴリの最新の投稿と、この最後の投稿の 2 つの投稿を別の HTML 形式で表示する必要があります。問題は、最後のカテゴリが 1 つの投稿のみを印刷しvar_dump()、2 つの投稿が表示されるオブジェクトで停止することです。

ここで機能を確認してください:

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; }

ループが 1 つの投稿だけを出力して停止するのはなぜですか?

4

2 に答える 2

0

この行を変更して解決できました:

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 ループが最後の投稿を取得しない理由はまだわかりません。

于 2013-04-17T14:03:54.907 に答える