content-search.php (639B)
1 <?php 2 /** 3 * Template part for displaying results in search pages 4 * 5 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ 6 * 7 * @package appside 8 */ 9 10 ?> 11 12 <article id="post-<?php the_ID(); ?>" <?php post_class('single-blog-classic-item margin-bottom-30'); ?>> 13 <?php Appside()->post_thumbnail(); ?> 14 <div class="content"> 15 <?php 16 get_template_part('template-parts/common/post-meta'); 17 the_title( '<h2 class="title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); 18 get_template_part('template-parts/common/post-excerpt'); 19 ?> 20 </div> 21 </article><!-- #post-<?php the_ID(); ?> -->