MENU

wp_get_recent_posts

最近の投稿を取得します。

Retrieve the recent posts.

目次

wp_get_recent_postsのファンクションタグ使用方法

[php][/php]

概要

[php] 10,
‘offset’ => 0,
‘category’ => 0,
‘orderby’ => ‘post_date’,
‘order’ => ‘DESC’,
‘include’ => ,
‘exclude’ => ,
‘meta_key’ => ,
‘meta_value’ =>,
‘post_type’ => ‘post’,
‘post_status’ => ‘draft, publish, future, pending, private’,
‘suppress_filters’ => true ); ?>[/php]

戻り値

(array)
投稿の配列のリスト。投稿オブジェクトの配列を返すget_postsとは異なる。

(array)
List of posts arrays. Different from get_posts which returns an array of post objects.

wp_get_recent_postsのパラメーター

WP_Queryパラメータを使用します。

Uses WP_Query Parameters.

これは最新10件の投稿リストを表示するためにwp_get_recent_posts()関数を使用する方法を示す例です。

This is an example that show how to use the wp_get_recent_posts() function to list the recent 10 posts.

Recent Posts

大体の最近の投稿の範囲を定めたい場合、この下記の例のようにファンクションパラメータに数値を記入する必要があります。

If you want to delimit more or less recent posts you have to put the number in the function parameter like this example bellow:

[php]

Recent Posts

[/php]

注釈

  • Uses: wp_parse_args()
  • Uses: get_posts()

変更ログ

Since: 1.0.0
3.1.0: The $num parameter deprecated in favor of $args.

ソースファイル

wp_get_recent_posts()は、wp-includes/post.php内に位置しています。

wp_get_recent_posts() is located in wp-includes/post.php.

よかったらシェアしてね!
  • URLをコピーしました!

この記事を書いた人

WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

コメント

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

目次