[php] Template file

Viewer

copydownloadembedprintName: Template file
  1. <?php
  2. /*  Template Name: Podcast Landing Page */
  3. get_header(); 
  4. ?>
  5. <div class="w-3/4 mx-auto">
  6. <h1 class="text-center"><?php the_title() ?></h1>
  7.  
  8. <?php
  9. if ( have_posts() ):
  10.     while ( have_posts() ) : ?>
  11.         <header>
  12.         <div>
  13.             <?php the_post_thumbnail( 'full' ); ?>
  14.         </div>
  15.         <div>
  16.             <?php the_content(); ?>
  17.         </div>
  18.         </header> 
  19.     <?php 
  20.     endwhile;
  21. endif;
  22. ?>
  23.  
  24. </div>
  25. <?php get_footer(); ?>

Editor

You can edit this paste and save as new:


File Description
  • Template file
  • Paste Code
  • 20 Aug-2021
  • 475 Bytes
You can Share it: