File: /home/bt667/public_html/wp-content/themes/news-event/template-parts/content-search.php
<?php
/**
* Template part for displaying results in search pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package News Event
*/
use NewsEvent\CustomizerDefault as NEV;
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('list-item'); ?>>
<div class="blaze_box_wrap news-event-card">
<figure class="post-thumb-wrap <?php if(!has_post_thumbnail()){ echo esc_attr('no-feat-img');} ?>">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php
if( has_post_thumbnail() ) :
the_post_thumbnail('news-event-list', array(
'title' => the_title_attribute(array(
'echo' => false
))
));
endif;
?>
</a>
<?php news_event_get_post_categories( get_the_ID(), 2 ); ?>
</figure>
<div class="post-element">
<h2 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post-meta">
<?php
news_event_posted_by();
news_event_posted_on();
news_event_comments_number();
?>
</div>
<div class="post-excerpt"><?php the_excerpt(); ?></div>
<?php
do_action( 'news_event_section_block_view_all_hook', array(
'option' => true
));
?>
</div>
</div>
</article><!-- #post-<?php the_ID(); ?> -->