Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. add_filter('parse_query', 'own_content_only_restriction' );
  2.  
  3. function own_content_only_restriction( $wp_query ) {
  4. if ( !current_user_can( 'see_others_media' ) ) {
  5. if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/upload.php' ) !== false
  6. || strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/admin-ajax.php' ) !== false
  7. || strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) {
  8. global $current_user;
  9. $wp_query->set( 'author', $current_user->ID );
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement