Skip to content

Instantly share code, notes, and snippets.

@codersaiful
Created November 17, 2022 05:15
Show Gist options
  • Save codersaiful/8ea79f127252810051209985587d355d to your computer and use it in GitHub Desktop.
Save codersaiful/8ea79f127252810051209985587d355d to your computer and use it in GitHub Desktop.
<?php
add_filter('wpt_query_args','wpt_custom_args_mangaement');
function wpt_custom_args_mangaement( $args ){
$args['posts_per_page'] = 3;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment