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/public_html/wp-content/themes/puca/vc_templates/post/themes/fashion/ |
Upload File : |
<?php $thumbsize = isset($thumbsize) ? $thumbsize : 'medium';?> <?php $post_category = ""; $categories = get_the_category(); $separator = ' | '; $output = ''; if($categories){ foreach($categories as $category) { $output .= '<a href="'.esc_url( get_category_link( $category->term_id ) ).'" title="' . esc_attr( sprintf( esc_html__( 'View all posts in %s', 'puca' ), $category->name ) ) . '">'.$category->cat_name.'</a>'.$separator; } $post_category = trim($output, $separator); } ?> <div class="post-grid"> <article class="post"> <figure class="entry-thumb <?php echo (!has_post_thumbnail() ? 'no-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 class="entry-content"> <div class="entry"> <div class="meta-info"> <span class="author"><?php echo get_avatar(puca_tbay_get_id_author_post(), 'puca_avatar_post_carousel'); ?> <?php the_author_posts_link(); ?></span> <span class="entry-date"><?php echo puca_time_link(); ?></span> <?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 class="entry-meta"> <?php if (get_the_title()) { ?> <h4 class="entry-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h4> <?php } ?> </div> <div> <?php if (! has_excerpt()) { echo ""; } else { ?> <div class="entry-description"><?php echo puca_tbay_substring( get_the_excerpt(), 20, '...' ); ?></div> <?php } ?> </div> </div> </div> </article> </div>