get_posts( array $args = null )
Retrieves an array of the latest posts, or posts matching the given criteria.
Contents
Description Description
The defaults are as follows:
See also See also
Parameters Parameters
- $args
-
(array) (Optional) Arguments to retrieve posts. See WP_Query::parse_query() for all available arguments.
- 'numberposts'
(int) Total number of posts to retrieve. Is an alias of $posts_per_page in WP_Query. Accepts -1 for all. Default 5. - 'category'
(int|string) Category ID or comma-separated list of IDs (this or any children). Is an alias of $cat in WP_Query. Default 0. - 'include'
(array) An array of post IDs to retrieve, sticky posts will be included. Is an alias of $post__in in WP_Query. Default empty array. - 'exclude'
(array) An array of post IDs not to retrieve. Default empty array. - 'suppress_filters'
(bool) Whether to suppress filters. Default true.
Default value: null
- 'numberposts'
Return Return
(WP_Post[]|int[]) Array of post objects or post IDs.
Source Source
File: wp-includes/post.php
function get_posts( $args = null ) { $defaults = array( 'numberposts' => 5, 'category' => 0, 'orderby' => 'date', 'order' => 'DESC', 'include' => array(), 'exclude' => array(), 'meta_key' => '', 'meta_value' => '', 'post_type' => 'post', 'suppress_filters' => true, ); $r = wp_parse_args( $args, $defaults ); if ( empty( $r['post_status'] ) ) { $r['post_status'] = ( 'attachment' == $r['post_type'] ) ? 'inherit' : 'publish'; } if ( ! empty( $r['numberposts'] ) && empty( $r['posts_per_page'] ) ) { $r['posts_per_page'] = $r['numberposts']; } if ( ! empty( $r['category'] ) ) { $r['cat'] = $r['category']; } if ( ! empty( $r['include'] ) ) { $incposts = wp_parse_id_list( $r['include'] ); $r['posts_per_page'] = count( $incposts ); // only the number of posts included $r['post__in'] = $incposts; } elseif ( ! empty( $r['exclude'] ) ) { $r['post__not_in'] = wp_parse_id_list( $r['exclude'] ); } $r['ignore_sticky_posts'] = true; $r['no_found_rows'] = true; $get_posts = new WP_Query; return $get_posts->query( $r ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.2.0 | Introduced. |
More Information More Information
The most appropriate use for get_posts is to create an array of posts based on a set of parameters. It retrieves a list of recent posts or posts matching this criteria. get_posts can also be used to create Multiple Loops, though a more direct reference to WP_Query using new WP_Query is preferred in this case.
The parameters of get_posts are similar to those of get_pages but are implemented quite differently, and should be used in appropriate scenarios. get_posts uses WP_Query, whereas get_pages queries the database more directly. Each have parameters that reflect this difference in implementation.
query_posts also uses WP_Query, but is not recommended because it directly alters the main loop by changing the variables of the global variable $wp_query. get_posts, on the other hand, simply references a new WP_Query object, and therefore does not affect or alter the main loop.
If you would like to alter the main query before it is executed, you can hook into it using pre_get_posts. If you would just like to call an array of posts based on a small and simple set of parameters within a page, then get_posts is your best option.
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example to get the latest 10 posts in the blog:
You can also pass the
post_type
argument if you want to get posts from a Custom Post Type, like:Returns an array of WP_Post objects with attributes,
Expand full source codeCollapse full source code
Posts with Previous Next Navigation
You can also using the custom queries to make the post with Previous and Next Post Navigation. Here is the following method to make it workable.
Expand full source codeCollapse full source code
Reset after Postlists with offset
If you need after the loop, the post you had before joining the foreach, you can use this:
Expand full source codeCollapse full source code
Access all post data
Some post-related data is not available to get_posts by default, such as post content through the_content(), or the numeric ID. This is resolved by calling an internal function setup_postdata(), with the $post array as its argument:
Expand full source codeCollapse full source code
To access a post’s ID or content without calling setup_postdata(), or in fact any post-specific data (data retained in the posts table), you can use $post->COLUMN, where COLUMN is the table column name for the data. So $post->ID holds the ID, $post->post_content the content, and so on. To display or print this data on your page use the PHP echo command, like so:
Custom Field Parameters
Show posts associated with a certain custom field. Following example displays posts from the ‘product’ post type that have meta key ‘featured’ with value ‘yes’, using ‘meta_query’:
Refer to the custom fields parameters section of the WP_Query documentation for more examples.
You can check all the parameters that can be used on
get_posts
on https://codex.wordpress.org/Class_Reference/WP_Query#ParametersShow all attachments
Do this outside any Loops in your template.
Expand full source codeCollapse full source code
Get a post by its slug
Allows you to get a post ID by post slug.
Expand full source codeCollapse full source code
Taxonomy Parameters
Show posts associated with certain taxonomy. If specifying a taxonomy registered to a custom post type then instead of using ‘category’ you would use ‘{custom_taxonomy_name}’. For instance, if you had a custom taxonomy called “genre” and wanted to only show posts from the “jazz” genre you would use the below code.
Following example displays posts tagged with ‘jazz’, under ‘genre’ custom taxonomy, using ‘tax_query’:
Refer to the taxonomy parameters section of the WP_Query documentation for more examples.
Example to display posts or post type ‘album’, tagged with ‘jazz’ or ‘improv’ under the ‘genre’ custom taxonomy:
Note that the simple
'{custom_taxonomy_name}' => 'jazz'
has been deprecated in favor oftax_query
. More complex examples can be found on https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parametersorderby
also accepts the valuepost__in
. (Note two underscores between post and in.) If you usedinclude
to retrieve specific posts, the posts will be supplied in the order you supplied to include. For example:Latest posts ordered by title
To show the last ten posts sorted alphabetically in ascending order, the following will display their post date, title and excerpt:
Expand full source codeCollapse full source code
Random posts
Display a list of 5 posts selected randomly by using the MySQL RAND() function for the orderby parameter value:
Expand full source codeCollapse full source code
It is not considered an error condition if no posts are found based on the specified and default parameter values. Instead, an empty array (“
array()
“) is returned by the function.Posts list with offset
If you have your blog configured to show just one post on the front page, but also want to list links to the previous five posts in category ID 1, you can use this:
Expand full source codeCollapse full source code
Note: With use of the offset, the above query should be used only on a category that has more than one post in it, otherwise there’ll be no output.
Show attachments for the current post
Do this inside The Loop (where $post->ID is available).
Expand full source codeCollapse full source code