Advertisement
Konark

Untitled

Mar 7th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template part for displaying posts.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Acme Themes
  8. * @subpackage Weblog
  9. */
  10. global $weblog_customizer_all_values;
  11. $no_image ='';
  12. if( !has_post_thumbnail() || $weblog_customizer_all_values['weblog-blog-archive-layout'] != 'full-image' ){
  13. $no_image = 'acme-no-image';
  14. }
  15. ?>
  16.  
  17. <article id="post-<?php the_ID(); ?>" <?php post_class('acme-col-3 masonry-post'); ?>>
  18. <div class="inner-wrapper <?php echo $no_image?>">
  19. <?php
  20. if( has_post_thumbnail() && $weblog_customizer_all_values['weblog-blog-archive-layout'] == 'full-image' ){
  21. ?>
  22. <!--post thumbnal options-->
  23. <div class="post-thumb">
  24. <?php
  25. if( is_sticky() ){
  26. ?>
  27. <a href="<?php the_permalink(); ?>">
  28. <span class="fa fa-sticky-note sticky-format-icon"></span>
  29. </a>
  30. <?php
  31. }
  32. ?>
  33. <a href="<?php the_permalink(); ?>">
  34. <?php the_post_thumbnail('large')?>
  35. </a>
  36. <?php if ( 'post' === get_post_type() ) : ?>
  37. <div class="entry-meta">
  38. <?php weblog_posted_on(); ?>
  39. </div><!-- .entry-meta -->
  40. <?php endif; ?>
  41. <a href="<?php the_permalink(); ?>">
  42. <span class="format-icon"></span>
  43. </a>
  44. </div><!-- .post-thumb-->
  45. <?php
  46. }
  47. else{
  48. if ( 'post' === get_post_type() ) : ?>
  49. <div class="entry-meta">
  50. <?php weblog_posted_on(); ?>
  51. </div><!-- .entry-meta -->
  52. <?php endif;
  53. }
  54. ?>
  55. <header class="entry-header">
  56. <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  57. </header><!-- .entry-header -->
  58. <footer class="entry-footer">
  59. <?php weblog_entry_footer( 1, 0 , 0 ); ?>
  60. </footer><!-- .entry-footer -->
  61. <div class="entry-content">
  62. <?php the_excerpt(); ?>
  63. <?php
  64. wp_link_pages( array(
  65. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'weblog' ),
  66. 'after' => '</div>',
  67. ) );
  68. ?>
  69. </div><!-- .entry-content -->
  70. <div class="read-more"><a href="<?php the_permalink()?>" class="read-more-btn"><?php _e('Read More','weblog')?> </a></div>
  71. </div>
  72.  
  73. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement