Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created May 21, 2015 05:10
Show Gist options
  • Save mikejolley/0fa5cdbe0d78abf41fc6 to your computer and use it in GitHub Desktop.
Save mikejolley/0fa5cdbe0d78abf41fc6 to your computer and use it in GitHub Desktop.
add_filter( 'resume_manager_user_can_download_resume_file', 'custom_resume_manager_user_can_download_resume_file' );
function custom_resume_manager_user_can_download_resume_file( $can_download ) {
$can_download = current_user_can( 'employer' );
return $can_download;
}
@tintomatoes
Copy link

Am I correct in thinking that this simply limits resume download to the employer role?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment