0

私が取り組んでいるスタートページで、魔女のタグがフィーチャーされている最新の3つの投稿のみを表示したいと思います。「The Loop」でやるべきことは本当に基本的なことですが、どこにも答えが見つからず、本当にあらゆるところを見たような気がします :(

誰かが私を助けることができますか?

4

3 に答える 3

3

WP リファレンスhttps://codex.wordpress.org/Class_Reference/WP_Queryを参照してください。次の ようになります。

$featured_posts = new WP_Query(array(
    'tag' => 'featured',
    'posts_per_page' => 3,
));
于 2013-03-28T12:15:22.330 に答える
1
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; ?>
于 2013-03-28T12:13:45.000 に答える
-1

次のクエリを使用して、最新の 3 件の投稿を取得します。

"SELECT * FROM tablename WHERE featured=1 ORDER BY id DESC LIMIT 3"

*id=pk

于 2013-03-28T12:11:31.967 に答える