Skip to content

Instantly share code, notes, and snippets.

@higiacomo
higiacomo / gist:e4c484a1a271c8eb33a2
Last active April 8, 2016 12:03
List last 100 registered WordPress / BuddyPress users without a gravatar or uploaded avatar
/**
*
* List last 100 registered users without a gravatar or uploaded avatar
*
*/
add_action( 'admin_menu', 'wk_list_members_without_profile_picture' );
function wk_list_members_without_profile_picture(){
add_menu_page( 'Members w/o picture', 'Members w/o picture', 'manage_options', 'wb-without-avatar', 'wb_without_avatar' );
}