私は現在、これらのカスタム投稿を表示するためにquery_posts
を使用していますが、正しく書くためにはget_posts()
を使用するべきだと確信しています。
<?php query_posts( array( 'type-mario' => 'games', 'showposts' => 10 ) ); ?>
<p>Mario games</p>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2><?php the_title(); ?></h2>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
アドバイスありがとうございます。
こんにちは Elium2009 :
あなたのコードを使用して、私はこれがあなたが探していたものだと思いますか? (WP_Query()
はget_posts()
のもっと直接的なバージョンです):
<?php $posts = WP_Query(array(
'taxonomy' => 'type-mario'
'term' => 'games',
'posts_per_page' => 10
)); ?>
<p>Mario games</p>
<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2><?php the_title(); ?></h2>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
お役に立てれば?
どちらを使うこともできますが、get_postsを使いたいのであれば、次のようにします。
<?php query_posts('post_type=games&posts_per_page=10'); ?>
<?php if(have_posts()) : while (have_posts() ) : the_post(); ?>
...
<?php endwhile; endif; ?>