Created
November 17, 2022 05:15
-
-
Save codersaiful/8ea79f127252810051209985587d355d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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