![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/claquemagazineawards.com/wp-content/themes/exs/page-templates/ |
<?php /** * Template Name: Full Width Post * Template Post Type: post */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } get_header(); // Start the Loop. while ( have_posts() ) : the_post(); ?> <div id="layout" class="layout-full-width"> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?> itemtype="https://schema.org/Article" itemscope="itemscope"> <?php exs_post_thumbnail(); ?> <div class="item-content"> <?php $exs_show_title = ! exs_option( 'title_show_title', '' ) && get_the_title(); if ( $exs_show_title ) : ?> <header class="entry-header"> <?php the_title( '<h1 class="entry-title" itemprop="headline">', '</h1>' ); ?> </header> <?php endif; //show_title ?> <footer class="entry-footer entry-footer-top"><?php exs_entry_meta( true, true, true, false, true ); ?></footer> <!-- .entry-footer --> <div class="entry-content" itemprop="text"> <?php the_content(); wp_link_pages( exs_get_wp_link_pages_atts() ); ?> </div><!-- .entry-content --> <footer class="entry-footer entry-footer-bottom"><?php exs_entry_meta( false, false, false, true, false ); ?></footer> <!-- .entry-footer --> </div><!-- .item-content --> </article><!-- #post-<?php the_ID(); ?> --> </div><!-- #layout --> <?php endwhile; get_footer();