Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save svenl77/01529f2de67eeb3b034418a853bfd528 to your computer and use it in GitHub Desktop.
Save svenl77/01529f2de67eeb3b034418a853bfd528 to your computer and use it in GitHub Desktop.
buddyforms_user_posts_query_args_posts_per_page
<?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