![]() 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/template-parts/cpt/ |
<?php /** * Template part for displaying posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package WordPress * @subpackage ExS * @since 0.0.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } $args = ! empty( $args ) ? $args : array(); $columns = ! empty( $args['columns'] ); if ( $columns ) : ?> <div class="grid-item"> <?php endif; //columns echo '<div>'; if ( has_post_thumbnail() ) { echo '<a href="' . esc_url( get_permalink() ) . '" class="exs-cpt-thumbnail">'; the_post_thumbnail(); echo '</a>'; } the_title( sprintf( '<h2 class="entry-title" itemprop="headline"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); the_excerpt(); wp_link_pages( exs_get_wp_link_pages_atts() ); echo '</div>'; if ( $columns ) : ?> </div><!--.grid-item--> <?php endif; //columns ?>