How do i use bp_user_query search_terms on my theme?
-
Hey Guys,
Im trying to put together a simple php snippet to insert in my existing theme so that it spits out a list of buddypress members.
I often use mydomain.com/?s=search_term as a quick and easy way for my users to browse thru arbitrary post.
I’d like to include a simple return of buddypress member names along with the search results.*any ideas would be helpful
// The Query $user_query = new bp_user_query( $args ); // User Loop if ( ! empty( $user_query->results ) ) { foreach ( $user_query->results as $user ) { echo '<p>' . $user->display_name . '</p>'; } } else { echo 'No users found.'; } ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.