Support

Account

Home Forums Backend Issues (wp-admin) Backend shows information only of own user Reply To: Backend shows information only of own user

  • It seems was a cache problem!!
    And to continue with the restriction.
    What about filter the media?
    Something like this, but not working yet

    
    function ik_eyes_only( $wp_query ) { 
    	if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/upload.php' ) !== false || strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) { 
    		if ( !current_user_can( 'level_5' ) ){ 
    			global $current_user; 
    			$wp_query->set( 'author', $current_user->id ); 
    		} 
    	} 
    }
    add_filter('parse_query', 'ik_eyes_only' );
    

    Thanks a lot!