<?php /* Template Name: template_text_over_img */ get_header(); ?> <article class='template-text-over-img '> <br> <?php if( have_posts()){ while( have_posts()) { the_post(); ?> <!-- add return btn to category --> <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. $thumbnail_url = get_the_post_thumbnail_url('', 'post-thumbnails'); } ?> <img src='<?php echo $thumbnail_url; ?>'> <div class="heading-template"> <?php the_title(); ?> </div> <br> <div class="singel-para"> <?php the_content(); ?> </div> <br> </p> <?php } } ?> </article> <?php get_footer(); ?>