Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save samjco/b0106243aeb199cfb9b93b05f08b103a to your computer and use it in GitHub Desktop.

Select an option

Save samjco/b0106243aeb199cfb9b93b05f08b103a to your computer and use it in GitHub Desktop.

Revisions

  1. kcpt-steven-kohlmeyer created this gist Feb 9, 2015.
    18 changes: 18 additions & 0 deletions redirect-subscriber.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    <?php

    global $current_user; // Use global
    get_currentuserinfo(); // Make sure global is set, if not set it.

    if ( user_can( $current_user, "subscriber" ) ) {

    // Disable admin bar for subscribers
    show_admin_bar(false);

    // If trying to view back end of wordpress
    if( is_admin() ) {

    wp_redirect( home_url() );

    }

    }