Skip to content

Instantly share code, notes, and snippets.

@asterion
Last active July 7, 2017 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asterion/87a2883c427ed1216a01174576c13388 to your computer and use it in GitHub Desktop.
Save asterion/87a2883c427ed1216a01174576c13388 to your computer and use it in GitHub Desktop.
otorgar permiso de subir multimedia
<?php
function allow_contrib_upload() {
$contrib = get_role( 'contributor' );
$contrib->add_cap( 'upload_files' );
}
add_action( 'admin_init', 'allow_contrib_upload', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment