Skip to content

Instantly share code, notes, and snippets.

@samk-dev
Last active February 16, 2023 17:08
Show Gist options
  • Save samk-dev/fa530456b33e0b0e0784e45eb4daaf85 to your computer and use it in GitHub Desktop.
Save samk-dev/fa530456b33e0b0e0784e45eb4daaf85 to your computer and use it in GitHub Desktop.
<?php
// disallow users from accessing other users posts
function posts_for_current_author($query) {
global $pagenow;
if( 'edit.php' != $pagenow || !$query->is_admin )
return $query;
if( !current_user_can( 'manage_options' ) ) {
global $user_ID;
$query->set('author', $user_ID );
}
return $query;
}
add_filter('pre_get_posts', 'posts_for_current_author');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment