Make WordPress Core


Ignore:
Timestamp:
04/13/2006 04:49:38 AM (20 years ago)
Author:
ryan
Message:

Add wp_revoke_user() and WP_User::remove_all_caps() to help those doing multi blog stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-db.php

    r3700 r3705  
    275275}
    276276
     277function wp_revoke_user($id) {
     278    $id = (int) $id;
     279   
     280    $user = new WP_User($id);
     281    $user->remove_all_caps();   
     282}
     283
    277284function get_link($link_id, $output = OBJECT) {
    278285    global $wpdb;
Note: See TracChangeset for help on using the changeset viewer.