📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 12:12:10
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
template-parts
/
content
✏️
Editing: content-search.php
<?php /** * @package Case-Themes */ $archive_readmore_text = berich()->get_theme_opt('archive_readmore_text', esc_html__('Explore more', 'berich')); $featured_img_size = berich()->get_theme_opt('featured_img_size', '900x384'); $archive_category = berich()->get_theme_opt( 'archive_category', true ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class('pxl---post pxl-item--archive pxl-item--standard'); ?>> <?php if (has_post_thumbnail()) { $img = pxl_get_image_by_size( array( 'attach_id' => get_post_thumbnail_id($post->ID), 'thumb_size' => $featured_img_size, ) ); $thumbnail = $img['thumbnail']; echo '<div class="pxl-item--image">'; ?> <a href="<?php echo esc_url( get_permalink()); ?>"><?php echo pxl_print_html($thumbnail); ?></a> <div class="pxl-readmore--wrap"> <div class="pxl-item--readmore"> <a class="btn--readmore" href="<?php echo esc_url( get_permalink()); ?>"> <span class="btn--text"> <i class="flaticon-right-up"></i> <span><?php echo berich_html($archive_readmore_text); ?></span> </span> </a> </div> </div> <?php echo '</div>'; } ?> <div class="pxl-item--holder"> <?php if($archive_category) : ?> <div class="pxl-item--category"> <?php the_terms( get_the_ID(), 'category', '', ', ' ); ?> </div> <?php endif; ?> <h2 class="pxl-item--title title-hover-line"> <a href="<?php echo esc_url( get_permalink()); ?>" title="<?php the_title_attribute(); ?>"> <?php if(is_sticky()) { ?> <i class="caseicon-check-mark pxl-mr-4"></i> <?php } ?> <?php the_title(); ?> </a> </h2> <div class="pxl-item--excerpt"> <?php berich()->blog->get_excerpt(); wp_link_pages( array( 'before' => '<div class="page-links">', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', ) ); ?> </div> <?php berich()->blog->get_archive_meta(); ?> </div> </article>
💾 Save Changes
❌ Cancel