Created
May 29, 2013 05:42
-
-
Save UmeshSingla/5668193 to your computer and use it in GitHub Desktop.
Wordpress Recent Post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'numberposts' => 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 ); | |
$recent_posts = wp_get_recent_posts( $args, $output = ARRAY_A ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment