Skip to content

Instantly share code, notes, and snippets.

@wpmark
Created September 9, 2018 10:45
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/cab496ab147c2d543b0961b338131aaa to your computer and use it in GitHub Desktop.
Save wpmark/cab496ab147c2d543b0961b338131aaa to your computer and use it in GitHub Desktop.
A simple example of using WP_Query extensibly.
<?php
// run a query for the latest 10 jobs.
$jobs = new WP_Query(
apply_filters(
'wpmark_job_query_args',
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