Добрый день. Мне нужна помощь со следующей функцией 'get_template_part ()'
. Я предоставил код, который я использую, но, похоже, он не подключается к повторно используемому коду, помогите.
приведенный ниже код находится в следующем каталоге: template-parts. php> page-l oop. php:
<?php while (have_posts()): the_post( ); ?>
<h1 class="text-center text-primary"><?php the_title( ); ?> </h1>
<?php
if ( has_post_thumbnail()):
the_post_thumbnail('blog', array('class'=> 'featured-image'));
endif;
?>
<?php the_content(); ?>
<?php endwhile; ?>
, и вот страница, использующая функция:
<?php
/*
*Template Name: Page with sidebars
*/
get_header( ); ?>
<main class="container page section with-sidebar" >
<div class="page-content">
<?php get_template_part( 'template-parts/page', 'loop' ); ?>
</div>
<?php get_sidebar( ); ?>
</main>
<?php get_footer( ); ?>
Я не вижу, где ошибка, я следую за курсом, и я думаю, что у меня тот же код, но содержание страницы исчезло. пожалуйста помоги. Спасибо.