Skip to content

Instantly share code, notes, and snippets.

@versluis
Created February 19, 2018 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save versluis/3645165878facd7473b8e6ab569e4121 to your computer and use it in GitHub Desktop.
Save versluis/3645165878facd7473b8e6ab569e4121 to your computer and use it in GitHub Desktop.
List all posts in WordPress
// list all articles on this site
// https://codex.wordpress.org/Template_Tags/wp_get_archives
$args = array(
'type' => 'postbypost',
'limit' => '',
'format' => 'html',
'before' => '',
'after' => '',
'show_post_count' => false,
'echo' => 1,
'order' => 'DESC'
);
wp_get_archives( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment