Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bryanrsebastian/38994b379490be672391925707d585d6 to your computer and use it in GitHub Desktop.
Save bryanrsebastian/38994b379490be672391925707d585d6 to your computer and use it in GitHub Desktop.
add_filter( 'ajax_query_attachments_args', 'show_users_own_attachments', 1, 1 );
function show_users_own_attachments( $query )
{
global $current_user;
if( in_array( 'merchant', $current_user->roles ) )
$query['author'] = $current_user->ID;
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment