Advertisement
Konark

Untitled

Mar 7th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template part for displaying single posts.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Acme Themes
  8. * @subpackage Weblog
  9. */
  10. $no_image ='';
  11. if( !has_post_thumbnail() ){
  12. $no_image = 'acme-no-image';
  13. }
  14. ?>
  15. <article id="post-<?php the_ID(); ?>" <?php post_class($no_image); ?>>
  16. <!--post thumbnal options-->
  17. <?php
  18. if( has_post_thumbnail() ){
  19. ?>
  20. <div class="single-feat clearfix">
  21. <figure class="single-thumb single-thumb-full">
  22. <?php
  23. $thumbnail = 'full';
  24. the_post_thumbnail( $thumbnail );
  25. ?>
  26. </figure>
  27. <div class="entry-meta">
  28. <?php weblog_posted_on(); ?>
  29. </div><!-- .entry-meta -->
  30. </div><!-- .single-feat-->
  31. <?php
  32. }
  33. ?>
  34. <?php
  35. if( !( has_post_thumbnail() ) ){
  36. ?>
  37. <div class="entry-meta">
  38. <?php weblog_posted_on(); ?>
  39. </div><!-- .entry-meta -->
  40. <?php
  41. }
  42. ?>
  43. <header class="entry-header">
  44. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  45. </header><!-- .entry-header -->
  46. <footer class="entry-footer">
  47. <?php weblog_entry_footer(); ?>
  48. </footer><!-- .entry-footer -->
  49. <div class="clearfix"></div>
  50. <div class="entry-content">
  51. <?php the_content(); ?>
  52. <?php
  53. wp_link_pages( array(
  54. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'weblog' ),
  55. 'after' => '</div>',
  56. ) );
  57. ?>
  58. </div><!-- .entry-content -->
  59. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement