静的ページに最後の3つの投稿(最近の投稿)を表示する方法


回答:


23

私は通常このアプローチを使用します:

間違ったアプローチ

<?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を参照してください。


2
私はwordpress.stackexchange.com/a/1755/12404を参照して、使用することquery_posts()がほとんど常に悪い考えである理由を示します。
swissspidy 2017

4

それはあなたが何をしているのかに依存します。「投稿のページ」、つまり新しいページテンプレートファイルを作成する場合は、そのページに2次ループを作成できます。

コーデックスにはこの例があり、ここに別の非常にストリップされた例があります。

<?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 */ ?>

任意のページにドロップできるものを探している場合、最善の解決策はショートコードです。複数の投稿をフェッチしてリストに返すショートコード(または必要なもの)を作成する必要があります。例:

<?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に入れることはできますか、それとも別の場所に置くべきですか?
user385917

最初の例は、テーマのどこにでも置くことができます。2番目のショートコードの例を入力してくださいfunctions.php
chrisguitarguy

コードの最初のブロックには3つの投稿をループする必要はありません
Murhaf Sousli 14年

3

ワードプレスコーデックスには、この正確なケースのガイドがあります。ここを参照してください。コードは非常に短いため、ここに貼り付けます。詳細については、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; ?>

1

Wordpressは、そのようなリクエストのための関数、query_posts()を提供します。

query_posts()は、WordPressが投稿の表示に使用するデフォルトのクエリを変更する最も簡単な方法です。query_posts()を使用して、特定のURLに通常表示される投稿とは異なる投稿を表示します。

たとえば、ホームページには通常、最新の10件の投稿が表示されます。5つの投稿のみを表示したい場合(およびページネーションを気にしない場合)、次のようにquery_posts()を使用できます。

query_posts( 'posts_per_page = 5');

クエリを実行すると、投稿を希望どおりに表示できます。


-1
<?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つの投稿(最近の投稿)を表示する方法 「私は通常、このアプローチを使用します」と言った場合、それは役に立ちますか?
ジョン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.