Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="container interior-wrapper">
  3. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  4.  
  5. <h1 class="pb-4"><?php the_title(); ?></h1>
  6. <h3 class="text-center"><?php the_date(); ?></h3>
  7.  
  8. <figure>
  9. <?php the_post_thumbnail( 'full', array( 'class' => 'mx-auto d-block img-fluid shadow' ) ); ?>
  10.  
  11. </figure>
  12. <main>
  13. <?php the_content(); ?>
  14.  
  15. </main>
  16. <aside class="pt-2 pb-3">
  17. <?php the_tags(); ?>
  18.  
  19. </aside>
  20. <?php endwhile; else : ?>
  21. <p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
  22. <?php endif; ?>
  23. </div>
  24. <?php get_footer(); ?>
  25.  
  26. <?php get_header(); ?>
  27. <div class="container interior-wrapper pt-3 pb-3">
  28. <div class="alert alert-success mt-3">
  29. <h4 class="text-uppercase text-center">
  30. <?php printf( __( 'Content Tagged With: %s', 'my_theme' ), '<span>' . get_search_query() . '</span>' ); ?>
  31. <em>&ldquo;<?php single_tag_title(); ?>&rdquo;</em>
  32. </h4>
  33. </div>
  34. <div class="row mt-5">
  35. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  36. <div class="col-md-12 mb-4">
  37. <main>
  38. <h1>
  39. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
  40. <?php the_title(); ?>
  41.  
  42. </a>
  43. </h1>
  44. <?php the_excerpt(); ?>
  45.  
  46. <hr class="shadow news-pg-hr" />
  47. </main>
  48. </div>
  49. <?php endwhile; else : ?>
  50. <p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
  51. <?php endif; ?>
  52. <div class="col">
  53. <?php //echo my_theme_pagination(); ?>
  54. </div>
  55. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement