Advertisement
rdusnr

Untitled

Nov 7th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1.  
  2. /* Prevent guest users to see bbpress forums */
  3. function redirect_non_members_bbpress() {
  4. if (class_exists('bbpress')) {
  5. if (is_bbpress()) {
  6. wp_redirect(home_url(). '/register/', 301);
  7. exit;
  8. }
  9. }
  10. }
  11.  
  12. add_action('template_redirect','redirect_non_members_bbpress',22);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement