Created
July 20, 2017 11:28
-
-
Save svenl77/01529f2de67eeb3b034418a853bfd528 to your computer and use it in GitHub Desktop.
buddyforms_user_posts_query_args_posts_per_page
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('buddyforms_user_posts_query_args_posts_per_page', 'my_buddyforms_user_posts_query_args_posts_per_page', 10, 1 ); | |
function my_buddyforms_user_posts_query_args_posts_per_page( $posts_per_page ){ | |
return 3; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment