content-search.php 913 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Template part for displaying results in search pages.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Sakurairo
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <header class="entry-header">
  12. <?php
  13. $title_style = get_post_meta(get_the_ID(), 'title_style', true);
  14. the_title(
  15. sprintf(
  16. '<h2 class="entry-title" style="%s"><a href="%s" rel="bookmark">',
  17. esc_attr($title_style),
  18. esc_url(get_permalink())
  19. ),
  20. '</a></h2>'
  21. );
  22. ?>
  23. <?php if ('post' === get_post_type()) : ?>
  24. <div class="entry-meta">
  25. <?php akina_posted_on(); ?>
  26. </div><!-- .entry-meta -->
  27. <?php endif; ?>
  28. </header><!-- .entry-header -->
  29. <div class="entry-summary">
  30. <?php the_excerpt(); ?>
  31. </div><!-- .entry-summary -->
  32. <footer class="entry-footer">
  33. <?php akina_entry_footer(); ?>
  34. </footer><!-- .entry-footer -->
  35. </article><!-- #post-## -->