Home › Forums › WordPress › Admin Customization › Remove admin bar for subscribers.
Tagged: action, admin, bar, wordpress
add_action( 'after_setup_theme', 'l7w_remove_admin_bar' ); function l7w_remove_admin_bar() { if ( ! current_user_can( 'edit_posts' ) ) { show_admin_bar( false ); } }
You must be logged in to reply to this topic.