Notice: Undefined offset: 1 in /home/b/btrainlb/wp.obgames.ru/public_html/wp-includes/class-wp-query.php on line 3252
Notice: Trying to get property of non-object in /home/b/btrainlb/wp.obgames.ru/public_html/wp-content/themes/obgames/index.php on line 179 бизнес-игра 
Дана вот такая ошибка (сверху). 
Есть вот такой код: 
<?php the_post(); if (has_post_thumbnail()): ?>
	<img src="<?php the_post_thumbnail_url(); ?>" alt="Мероприятие">
		<?php else: ?>
		<div class="sbox__video-wrapper">    
		<?php 
		    $image = get_the_post_thumbnail_url($post->ID, 'medium');  // Та самая 179 строка
			$title = 'бизнес-игра ' . get_the_title();
		    if (!$image) $image = get_template_directory_uri() . '/img/no-image.jpg';
	echo "<img src='$image' alt='$title'>";	
			?>
		</div>
	<?php endif; ?>
Что не так? Почему выдаёт ошибку?