Skip to content

Instantly share code, notes, and snippets.

@miziomon
miziomon / current-user-filter.php
Last active August 29, 2015 14:21
WordPress - Filter content by current user
/*
* @miziomon
* Filter content by current user
*
*/
add_filter('pre_get_posts', function ($query) {
global $pagenow, $user_ID;
if( !current_user_can('administrator') && $query->is_admin && 'upload.php' != $pagenow ){
$query->set('author', $user_ID);