Advertisement
Guest User

Untitled

a guest
Dec 4th, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  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 mitckliniken
  8.  */
  9.  
  10. ?>
  11.  
  12. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  13.     <div class="container">
  14.         <div class="search-results-row">
  15.             <?php the_post_thumbnail(); ?>
  16.  
  17.             <div class="search-results-title">
  18.                 <?php the_title(sprintf('<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url(get_permalink())), '</a></h2>'); ?>
  19.  
  20.                 <div class="entry-summary">
  21.                     <?php the_excerpt(); ?>
  22.                 </div><!-- .entry-summary -->
  23.             </div>
  24.         </div>
  25.  
  26.     </div>
  27. </article><!-- #post-<?php the_ID(); ?> -->
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement