Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 16th, 2010 | Syntax: PHP | Size: 0.33 KB | Hits: 120 | Expires: Never
Copy text to clipboard
  1. add_action( 'init', 'contrib_can_upload', 10 );
  2. function contrib_can_upload( ) {
  3.     $role =& get_role('contributor');
  4.     $role->add_cap('upload_files');
  5. }
  6.  
  7.  
  8. // Remove
  9. add_action( 'init', 'contrib_can_upload', 10 );
  10. function contrib_can_upload( ) {
  11.     $role =& get_role('contributor');
  12.     $role->remove_cap('upload_files');
  13. }