Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/themes/puca/vc_templates/post/themes/supermaket/ |
Upload File : |
<?php $thumbsize = isset($thumbsize) ? $thumbsize : 'medium'; ?> <div class="entry-content media"> <?php if ( has_post_thumbnail() ) { ?> <div class="media-left"> <figure class="entry-thumb"> <a href="<?php the_permalink(); ?>" class="entry-image"> <?php $thumbnail_id = get_post_thumbnail_id(get_the_ID()); echo wp_get_attachment_image($thumbnail_id, $thumbsize ); ?> </a> </figure> </div> <?php } ?> <div class="media-body"> <div class="entry-content-inner clearfix"> <div class="entry-meta"> <div class="meta-info"> <span class="entry-date"><?php echo puca_time_link(); ?></span> <?php if (get_the_title()) { ?> <h4 class="entry-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h4> <?php } ?> <?php if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) : ?> <span class="comments-link"><i class="icons icon-bubbles"></i> <?php comments_popup_link( '0', '1', '%' ); ?></span> <?php endif; ?> </div> </div> </div> </div> </div>