静的ページに最後の3つの投稿(最近の投稿)を表示するにはどうすればよいですか?
5 回答
- 投票
-
- 2017-02-01
私は通常このアプローチを使用します:
間違ったアプローチ
<?php query_posts( array( 'category_name' => 'news', 'posts_per_page' => 3, )); ?> <?php if( have_posts() ): while ( have_posts() ) : the_post(); ?> <?php the_excerpt(); ?> <?php endwhile; ?> <?php else : ?> <p><?php __('No News'); ?></p> <?php endif; ?>
@swissspidyの助けを借りて正しい方法はこれです:
<?php // the query $the_query = new WP_Query( array( 'category_name' => 'news', 'posts_per_page' => 3, )); ?> <?php if ( $the_query->have_posts() ) : ?> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endwhile; ?> <?php wp_reset_postdata(); ?> <?php else : ?> <p><?php __('No News'); ?></p> <?php endif; ?>
詳細については、 @codex を参照してください.
I usually use this approach:
wrong approach
<?php query_posts( array( 'category_name' => 'news', 'posts_per_page' => 3, )); ?> <?php if( have_posts() ): while ( have_posts() ) : the_post(); ?> <?php the_excerpt(); ?> <?php endwhile; ?> <?php else : ?> <p><?php __('No News'); ?></p> <?php endif; ?>
With the help of @swissspidy the correct way is this one:
<?php // the query $the_query = new WP_Query( array( 'category_name' => 'news', 'posts_per_page' => 3, )); ?> <?php if ( $the_query->have_posts() ) : ?> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endwhile; ?> <?php wp_reset_postdata(); ?> <?php else : ?> <p><?php __('No News'); ?></p> <?php endif; ?>
See @codex for more info.
-
`query_posts()`を使用することがほとんどの場合悪い考えである理由を示すために、http://wordpress.stackexchange.com/a/1755/12404を参照するのが好きです.I like to reference to http://wordpress.stackexchange.com/a/1755/12404 in order to show why using `query_posts()` is almost always a bad idea.
- 2
- 2017-02-01
- swissspidy
-
- 2011-12-14
それはあなたが何をしようとしているのかによります. 「投稿のページ」を実行する場合、つまり、新しいページテンプレートファイルを作成する場合は、そのページに2次ループを作成できます.
コーデックスにはこの例があり、これはもう1つの非常に簡略化された例です.
<?php /* Template Name: Page of Posts */ get_header(); ?> <?php while( have_posts() ): the_post(); /* start main loop */ ?> <h1><?php the_title(); ?></h1> <?php /* Start Secondary Loop */ $other_posts = new WP_Query( /*maybe some args here? */ ); while( $others_posts->have_posts() ): $other_posts->the_post(); ?> You can do anything you would in the main loop here and it will apply to the secondary loop's posts <?php endwhile; /* end secondary loop */ wp_reset_postdata(); /* Restore the original queried page to the $post variable */ ?> <?php endwhile; /* End the main loop */ ?>
任意のページにドロップできるものを探している場合、最善の解決策は
ショートコードです. a>.複数の投稿をフェッチしてリスト(または必要なもの)に返すショートコードを作成する必要があります.例: <?php add_action( 'init', 'wpse36453_register_shortcode' ); /** * Registers the shortcode with add_shortcode so WP knows about it. */ function wpse36453_register_shortcode() { add_shortcode( 'wpse36453_posts', 'wpse36453_shortcode_cb' ); } /** * The call back function for the shortcode. Returns our list of posts. */ function wpse36453_shortcode_cb( $args ) { // get the posts $posts = get_posts( array( 'numberposts' => 3 ) ); // No posts? run away! if( empty( $posts ) ) return ''; /** * Loop through each post, getting what we need and appending it to * the variable we'll send out */ $out = '<ul>'; foreach( $posts as $post ) { $out .= sprintf( '<li><a href="%s" title="%s">%s</a></li>', get_permalink( $post ), esc_attr( $post->post_title ), esc_html( $post->post_title ) ); } $out .= '</ul>'; return $out; }
It kind of depends on what you're going for. If you want to do a "page of posts" -- other words, create a new page template file -- you can create a secondary loop on that page.
The codex has an example of this and here's another, very stripped down example.
<?php /* Template Name: Page of Posts */ get_header(); ?> <?php while( have_posts() ): the_post(); /* start main loop */ ?> <h1><?php the_title(); ?></h1> <?php /* Start Secondary Loop */ $other_posts = new WP_Query( /*maybe some args here? */ ); while( $others_posts->have_posts() ): $other_posts->the_post(); ?> You can do anything you would in the main loop here and it will apply to the secondary loop's posts <?php endwhile; /* end secondary loop */ wp_reset_postdata(); /* Restore the original queried page to the $post variable */ ?> <?php endwhile; /* End the main loop */ ?>
If you're looking for something that you can drop into any page, the best solution would be a shortcode. You would need to create a shortcode that fetches several posts and returns them in a list (or whatever you want). An example:
<?php add_action( 'init', 'wpse36453_register_shortcode' ); /** * Registers the shortcode with add_shortcode so WP knows about it. */ function wpse36453_register_shortcode() { add_shortcode( 'wpse36453_posts', 'wpse36453_shortcode_cb' ); } /** * The call back function for the shortcode. Returns our list of posts. */ function wpse36453_shortcode_cb( $args ) { // get the posts $posts = get_posts( array( 'numberposts' => 3 ) ); // No posts? run away! if( empty( $posts ) ) return ''; /** * Loop through each post, getting what we need and appending it to * the variable we'll send out */ $out = '<ul>'; foreach( $posts as $post ) { $out .= sprintf( '<li><a href="%s" title="%s">%s</a></li>', get_permalink( $post ), esc_attr( $post->post_title ), esc_html( $post->post_title ) ); } $out .= '</ul>'; return $out; }
-
これをheader.phpに入れることはできますか、それとも別の場所に置く必要がありますか?Can I put this into header.php or should I put it somewhere else?
- 0
- 2011-12-15
- user385917
-
最初の例は、テーマのどこにでも配置できます.2番目のショートコードの例は `functions.php`に入れる必要がありますThe first example can go anywhere in your theme. The second, shortcode, example should go in `functions.php`
- 0
- 2011-12-15
- chrisguitarguy
-
コードの最初のブロックには、3つの投稿をループする必要がありませんthe first block of code doesn't have a to loop over 3 posts
- 0
- 2014-06-10
- Murhaf Sousli
-
- 2012-10-26
ワードプレスのコーデックスには、この正確なケースのガイドがあります.
こちらをご覧ください. 非常に短いため、ここにコードを貼り付けます.詳細については、wordpress.orgサイトにアクセスしてください. <?php $args = array( 'numberposts' => 10, 'order'=> 'ASC', 'orderby' => 'title' ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <div> <?php the_date(); ?> <br /> <?php the_title(); ?> <?php the_excerpt(); ?> </div> <?php endforeach; ?>
There's a guide for this precise case at the wordpress codex. See it here: I paste the code here because it's quite short, for more information go to the wordpress.org site.
<?php $args = array( 'numberposts' => 10, 'order'=> 'ASC', 'orderby' => 'title' ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <div> <?php the_date(); ?> <br /> <?php the_title(); ?> <?php the_excerpt(); ?> </div> <?php endforeach; ?>
-
- 2011-12-14
Wordpressは、その種のリクエストに対応する関数を提供します: query_posts().
query_posts()は、デフォルトのクエリを変更する最も簡単な方法です. WordPressは投稿を表示するために使用します.query_posts()を使用して表示する 特定の場所に通常表示される投稿とは異なる投稿 URL.
たとえば、ホームページでは通常、最新の10個が表示されます. 投稿.5件の投稿のみを表示したい場合(そして気にしない場合 ページネーション)、次のようにquery_posts()を使用できます:
query_posts( 'posts_per_page=5');
クエリを実行すると、投稿を好きなように表示できます.
Wordpress provides a function for that kind of request: query_posts().
query_posts() is the easiest way to alter the default query that WordPress uses to display posts. Use query_posts() to display different posts than those that would normally show up at a specific URL.
For example, on the homepage, you would normally see the latest 10 posts. If you want to show only 5 posts (and don't care about pagination), you can use query_posts() like so:
query_posts( 'posts_per_page=5' );
Once you've performed the query, you can display the posts the way you want.
-
- 2019-05-16
<?php $the_query = new WP_Query( 'posts_per_page=3' ); while ($the_query -> have_posts()) : $the_query -> the_post();?> <?php /*html in here etc*/ the_title(); ?> <?php endwhile;wp_reset_postdata();?>
<?php $the_query = new WP_Query( 'posts_per_page=3' ); while ($the_query -> have_posts()) : $the_query -> the_post();?> <?php /*html in here etc*/ the_title(); ?> <?php endwhile;wp_reset_postdata();?>
-
質問に答えるコード-静的ページに最後の3つの投稿(最近の投稿)を表示するにはどうすればよいですか?「私は通常このアプローチを使用します:」と言ったら、それはあなたを助けますか?its code that answers the question - How to display last 3 posts (recent posts) in a static page? Would it help you if I said - "I usually use this approach:"?
- 0
- 2019-05-16
- Jon
静的ページに「最近の投稿」のようなものを実装したい:
http://themes.codehunk.me/insignio/(フッター)
ウィジェットなしでこれを行うにはどうすればよいですか?