• Почему не отображаются картинки в карточке товара?

    @anstr28 Автор вопроса
    Нашла файл single.php, это весь код

    <?php
    /**
    * The template for displaying all single posts.
    *
    * @package store
    */

    get_header(); ?>




    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( 'modules/content/content', 'single' ); ?>

    <?php //store_post_nav(); ?>

    <?php
    // If comments are open or we have at least one comment, load up the comment template
    if ( comments_open() || get_comments_number() ) :
    comments_template();
    endif;
    ?>

    <?php endwhile; // end of the loop. ?>




    <?php get_sidebar(); ?>
    <?php get_footer(); ?>