Skip to content

Instantly share code, notes, and snippets.

View windyjonas's full-sized avatar
Changing the world, or getting coffee.

Jonas Nordström windyjonas

Changing the world, or getting coffee.
View GitHub Profile
@windyjonas
windyjonas / my-stuff-only.php
Last active December 15, 2015 04:09
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' );