Viewing File: /home/rtsgrob/ww6/wp-content/themes/synergia/framework/modules/search/templates/parts/loop.php

<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
		<div class="qodef-post-content">
	        <?php if ( has_post_thumbnail() ) { ?>
		        <div class="qodef-post-image">
			        <a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
				        <?php the_post_thumbnail( 'thumbnail' ); ?>
			        </a>
		        </div>
	        <?php } ?>
	        <div class="qodef-post-title-area <?php if ( ! has_post_thumbnail() ) { echo esc_attr( 'qodef-no-thumbnail' ); } ?>">
		        <div class="qodef-post-title-area-inner">
			        <h5 itemprop="name" class="qodef-post-title entry-title">
				        <a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
			        </h5>
			        <?php
			        $qodef_my_excerpt = get_the_excerpt();
			        
			        if ( ! empty( $qodef_my_excerpt ) ) { ?>
				        <p itemprop="description" class="qodef-post-excerpt"><?php echo wp_trim_words( esc_html( $qodef_my_excerpt ), 30 ); ?></p>
			        <?php } ?>
		        </div>
	        </div>
        </div>
    </article>
<?php endwhile; ?>
<?php else: ?>
	<p class="qodef-blog-no-posts"><?php esc_html_e( 'No posts were found.', 'synergia' ); ?></p>
<?php endif; ?>
Back to Directory File Manager