while ( have_posts() ) : the_post();
global $post, $user_login, $current_user;
get_currentuserinfo();
if(current_user_can( 'edit_others_posts', $post->ID ) || ($post->post_author == $current_user->ID)) {
// выводим посты
// <!-- ======================================================== -->
get_template_part( 'template-parts/content-single', get_post_format() );
//<!-- ======================================================== -->
} else {
echo 'Вы не должны видеть данный контент';
}