Skip to content

Instantly share code, notes, and snippets.

@windyjonas
Last active December 15, 2015 04:09
Show Gist options
  • Save windyjonas/5199235 to your computer and use it in GitHub Desktop.
Save windyjonas/5199235 to your computer and use it in GitHub Desktop.
Test, for viewing only your own posts.
<?php
function my_stuff_only( $query ) {
if ( $query->is_admin && !current_user_can( 'manage_options' ) ) {
global $user_ID;
$query->set( 'author', $user_ID );
}
return $query;
}
add_filter( 'pre_get_posts', 'my_stuff_only' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment