私の質問は<td>
、query_post()
!
query_post()
これを作成するために、WordPress で を使用したことがあります。
私は重大な間違いを犯しました。これがスニペットです:
これにより、次のようにを使用して、watchというカテゴリの最近の投稿が表示
されます。offset
query_post()
<?php
$args = array( 'posts_per_page' => 1, 'order'=> 'DESC','category' => 'watch', 'orderby' => 'post_date','offset' => 0 );
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post); ?>
<td class="leftBoxes">
<div class="imgMargin"> <?php the_post_thumbnail(); ?> </div>
<br>
<div class="boxScrollsBlogsView">
<h2><?php the_title(); ?> </h2>
<P>
<?php the_excerpt(); ?>
</P>
<h3><a href="<?php the_permalink(); ?>"> ReadMore</a></h3>
</div>
</td>
<?php endforeach; ?>
先に進みたいと思った後、 コードを書いた方法ではページネーションを行うことができないことに気付きました!
wordpressのサイトでこのQUESTIONを見たことがありますが、正直なところ彼のやり方が理解できません!