Server IP : 192.158.238.246 / Your IP : 3.15.26.71 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/themes/simple-glassy/loop-templates/ |
Upload File : |
<?php /** * Post rendering content according to caller of get_template_part. * * @package SimpleGlassy */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; ?> <article <?php post_class('bg-glassy p-3 mb-3 rounded'); ?> id="post-<?php the_ID(); ?>"> <header class="entry-header"> <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ),'</a></h2>' ); ?> <?php if ( 'post' === get_post_type() ) : ?> <div class="entry-meta small mb-2"> <?php simpleglassy_posted_on(); ?> </div> <?php endif; ?> </header> <div class="row no-gutters"> <div class="col-12 col-lg-5"> <?php if ( has_post_thumbnail() ) : ?> <a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php the_title_attribute(); ?>"><?php echo get_the_post_thumbnail( $post->ID, 'post-thumbnail', array( 'class' => 'd-block mx-auto my-2' ) ); ?></a> <?php else : ?> <a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php the_title_attribute(); ?>"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/default-image.png" class="d-block mx-auto mt-2 mb-3" alt="<?php the_title(); ?>" /></a> <?php endif; ?> </div> <div class="col-12 col-lg-7 pl-lg-3 excerpt"> <?php the_excerpt(); ?> </div> </div> <footer class="entry-footer small mt-2"> <?php simpleglassy_entry_footer(); ?> </footer> </article>