Skip to content

Instantly share code, notes, and snippets.

@ekandreas
Created November 17, 2017 16:43
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 ekandreas/e80cccbc32d96439cc5e05c0814e04c7 to your computer and use it in GitHub Desktop.
Save ekandreas/e80cccbc32d96439cc5e05c0814e04c7 to your computer and use it in GitHub Desktop.
Vanilla Model Post
function model_post_latest($post_type = 'post', $max = 5)
{
return get_posts([
'post_type' => $post_type,
'posts_per_page' => $max,
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment