Здравствуйте, нужно сделать так что бы задний фон поста было изображение который лежит в посте Вот мой код <section id="blog" class="parallax-section"> <div class="container"> <div class="row"> <div class="col-md-12 col-sm-12 text-center"> <h2>Fitness Blog</h2> <p>Lorem ipsum dolor sit amet, maecenas eget vestibulum justo.</p> </div> <?php if(have_posts()): ?> <?php while(have_posts()) : the_post(); ?> <div class="wow fadeInUp col-md-6 col-sm-12" data-wow-delay="0.9s"> <div class="blog-thumb" style="background: url('<?php echo get_template_directory_uri()?>/images/blog-thumb.jpg');"> <span class="blog-date">Body Fitness / <?php the_time('d-m-Y') ?></span> <h3 class="blog-title"><a href="<?php the_permalink()?>"><?php the_title()?></a></h3> <h5 id="blog-author">Автор поста: <?php the_author(); ?></h5> </div> </div> <?php endwhile; ?> <?php else: ?> <p>No content found</p> <?php endif; ?> </div> </div> </section> PHP <section id="blog" class="parallax-section"> <div class="container"> <div class="row"> <div class="col-md-12 col-sm-12 text-center"> <h2>Fitness Blog</h2> <p>Lorem ipsum dolor sit amet, maecenas eget vestibulum justo.</p> </div> <?php if(have_posts()): ?> <?php while(have_posts()) : the_post(); ?> <div class="wow fadeInUp col-md-6 col-sm-12" data-wow-delay="0.9s"> <div class="blog-thumb" style="background: url('<?php echo get_template_directory_uri()?>/images/blog-thumb.jpg');"> <span class="blog-date">Body Fitness / <?php the_time('d-m-Y') ?></span> <h3 class="blog-title"><a href="<?php the_permalink()?>"><?php the_title()?></a></h3> <h5 id="blog-author">Автор поста: <?php the_author(); ?></h5> </div> </div> <?php endwhile; ?> <?php else: ?> <p>No content found</p> <?php endif; ?> </div> </div> </section> Как сделать что бы вместо /images/blog-thumb.jpg HTML /images/blog-thumb.jpg получилось фото который в посте?