Skip to content

Instantly share code, notes, and snippets.

@FernandoSalinas33
Created April 25, 2018 16:44
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 FernandoSalinas33/233df620d9e033b5879a889a5474385f to your computer and use it in GitHub Desktop.
Save FernandoSalinas33/233df620d9e033b5879a889a5474385f to your computer and use it in GitHub Desktop.
increase the number of listings on the stats dashboard from 10 to 20.
add_filter( 'wpjms_job_listing_loop_args', function( $args ) {
$args= array(
'post_type' => array( 'job_listing' ),
'author' => get_current_user_id(),
'posts_per_page' => 20,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment