Skip to content

Instantly share code, notes, and snippets.

@UmeshSingla
Created May 29, 2013 05:42
Show Gist options
  • Save UmeshSingla/5668193 to your computer and use it in GitHub Desktop.
Save UmeshSingla/5668193 to your computer and use it in GitHub Desktop.
Wordpress Recent Post
<?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