File: /home/kashmira/public_html/razitahir.com/wp-content/themes/upress/template-parts/content-search.php
<?php
/**
 * The template part for displaying results in search pages.
 *
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * @package UrduPress
 */
?>
<div class="default-post-block">
	<div class="post-thumbnail mb-10">
		<a href="<?php the_permalink() ?>" aria-label="<?php the_title() ?>">
		
			<?php
				if ( has_post_thumbnail() ) {
					the_post_thumbnail('postblock-grid');
				}
				else {
					echo '<img src="' . get_template_directory_uri() . '/images/nothumb-360.jpg" alt="'.get_the_title().'" />';
				}
			?>
		</a>
	</div>
	<div class="post-title mt-5 mb-10">
		<h5>
			<a href="<?php the_permalink() ?>">
				<?php 
					$trimtitle = get_the_title(); 
					$shorttitle = wp_trim_words( $trimtitle, $num_words = 14, $more = '… ' ); 
					echo $shorttitle; 
				?>
			</a>
		</h5>
	</div>
</div>