Skip to content

Instantly share code, notes, and snippets.

@anandkumar
Created August 23, 2013 14:13
Show Gist options
  • Save anandkumar/6319754 to your computer and use it in GitHub Desktop.
Save anandkumar/6319754 to your computer and use it in GitHub Desktop.
Hide bbPress topics / replies / forums from public or non-logged in users.
function pj_hla_logged_in_topics($have_posts){
if (!is_user_logged_in()){
$have_posts = null;
echo 'Login to see replies';
}
return $have_posts;
}
add_filter('bbp_has_topics', 'pj_hla_logged_in_topics');
add_filter('bbp_has_forums', 'pj_hla_logged_in_topics');
add_filter('bbp_has_replies', 'pj_hla_logged_in_topics');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment