0

私はワードプレスが初めてです。最後の 3 つの投稿を表示するタスクがありますが、通常の方法ではありません。投稿 div のサイズは異なります。これは私のhtmlコードです。

<div class="latest-posts">
       <div class="latest-posts-news-left">NEWS</div>
       <div class="latest-posts-news-right">
           <div class="l">
               <div class="latest-posts-news-first">first post</div>
               <div class="latest-posts-news-second">second post</div>
           </div>
           <div class="r">
               <div class="latest-posts-news-third">third post</div>
           </div>
       </div>
</div>

これは、それがどのように見えるかを示す画像ですhttp://img607.imageshack.us/img607/5194/1n3u.png

したがって、左側に 2 つの div、右側に 1 つの長い div があります。

この場合、どのようにループする必要がありますか? 答えを探していたのですが、見つからなかったので、実際の例を教えていただければ幸いです。

どうもありがとう!

4

2 に答える 2

0
<?php
$queryObject = new WP_Query( 'post_type=post&posts_per_page=5,orderby=post_date,order=DESC' );
// The Loop!
if ($queryObject->have_posts()) {

while ($queryObject->have_posts()) {
$queryObject->the_post();
?>

<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php
}

}
?>
于 2013-09-11T10:03:35.767 に答える