content-search.php 694 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template part for displaying results in search pages.
  4. *
  5. * Learn more: http://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Libre 2
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <header class="entry-header">
  12. <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  13. <?php if ( 'post' == get_post_type() ) : ?>
  14. <div class="entry-meta">
  15. <?php libre_2_posted_on(); ?>
  16. </div><!-- .entry-meta -->
  17. <?php endif; ?>
  18. </header><!-- .entry-header -->
  19. <div class="entry-summary">
  20. <?php the_excerpt(); ?>
  21. </div><!-- .entry-summary -->
  22. </article><!-- #post-## -->