Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
よく検索しましたが、正確な答えが得られませんでした。Wordpress ループで、「ニュース」などのカテゴリ別の最近の投稿の 3 番目の投稿から 2 つの投稿を選択するようにしたいと考えています。どうすればいいですか?私が思うSQLのように
SELECT * FROM tbl ORDER BY date DESC LIMIT 2,2;
以下のコードを試すことができます:
query_posts('offset=2&posts_per_page=2&cat=<id_of_cat>'); while ( have_posts() ) : the_post(); endwhile;
それが役に立てば幸い。