Skip to content

Instantly share code, notes, and snippets.

@wpmark
Created September 9, 2018 10: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 wpmark/d1b09fd43e33f4089b2df486121e39a2 to your computer and use it in GitHub Desktop.
Save wpmark/d1b09fd43e33f4089b2df486121e39a2 to your computer and use it in GitHub Desktop.
A simple example of using WP_Query
<?php
// run a query for the latest 10 jobs.
$jobs = new WP_Query(
array(
'posts_per_page' => 10,
'post_type => 'wpmark_job',
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment