Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Created February 5, 2015 16:03
Show Gist options
  • Save mauriciogofas/aecfef00e8ac02bbe7a9 to your computer and use it in GitHub Desktop.
Save mauriciogofas/aecfef00e8ac02bbe7a9 to your computer and use it in GitHub Desktop.
Custom Capability for especifc wp user
<?php
// Super User
function add_theme_caps() {
//to add capability to user
$user = new WP_User( $user_id = 1 ); //ID of user
$user->add_cap( 'custom_apability');
}
add_action( 'admin_init', 'add_theme_caps');
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment