私が取り組んでいるスタートページで、魔女のタグがフィーチャーされている最新の3つの投稿のみを表示したいと思います。「The Loop」でやるべきことは本当に基本的なことですが、どこにも答えが見つからず、本当にあらゆるところを見たような気がします :(
誰かが私を助けることができますか?
WP リファレンスhttps://codex.wordpress.org/Class_Reference/WP_Queryを参照してください。次の ようになります。
$featured_posts = new WP_Query(array(
'tag' => 'featured',
'posts_per_page' => 3,
));
query_posts('tag=featured&posts_per_page=3&order=DESC'); // show latest 3 posts on featured tag
//query_posts('category_name=featured&tag=featured&posts_per_page=3&order=DESC'); // show latest 3 posts on featured tag and featured categorey
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!-- do stuff ... -->
<?php endwhile; ?>
<?php endif; ?>
次のクエリを使用して、最新の 3 件の投稿を取得します。
"SELECT * FROM tablename WHERE featured=1 ORDER BY id DESC LIMIT 3"
*id=pk