Advertisement
Guest User

Untitled

a guest
Mar 13th, 2020
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <div class="entry-top">
  2. <h1 class="article-title entry-title">How To <?php the_title(); ?> Free</h1>
  3. <div class="views-nr"><?php echo getPostViews(get_the_ID()); ?><div class="clear"></div></div>
  4. <div class="article-meta vcard author"><span class="fn"><?php _e('by', 'anthemes'); ?> <?php the_author_posts_link(); ?></span></div>
  5. <div class="article-meta"><?php _e('In', 'anthemes'); ?> <?php the_category(' &middot; '); ?></div>
  6. <div class="clear"></div>
  7. </div><div class="clear"></div>
  8.  
  9.  
  10. <div class="entry">
  11. <?php if (!empty($smof_data['ads_entry_top'])) { ?>
  12. <!-- entry banner -->
  13. <div class="entry-banner">
  14. <?php echo stripslashes($smof_data['ads_entry_top']); ?>
  15. </div>
  16. <?php } ?>
  17.  
  18. <!-- entry content -->
  19. <?php the_content(''); // content ?>
  20.  
  21.  
  22.  
  23.  
  24. <?php wp_link_pages(); // content pagination ?>
  25. <div class="clear"></div>
  26.  
  27.  
  28.  
  29. <!-- tags -->
  30. <?php $tags = get_the_tags(); if ($tags): ?>
  31. <div class="simplebtn smallbtn blue-entry"><?php the_tags('',' &middot; '); // tags ?></div>
  32. <div class="clear"></div>
  33. <?php endif; ?>
  34.  
  35.  
  36. <div class="clear"></div>
  37. </div><!-- end .entry --><div class="clear"></div>
  38. </div><!-- end #post -->
  39. <?php endwhile; endif; ?>
  40. </article>
  41.  
  42. <!-- author -->
  43. <?php if(get_the_author_meta('description') ): ?>
  44. <div class="clear"></div>
  45. <div class="author-meta">
  46. <div class="entry">
  47. <?php echo get_avatar( get_the_author_meta( 'user_email' ), 100 ); ?>
  48. <div class="author-info">
  49. <strong><?php the_author_posts_link(); ?></strong> &rsaquo; <a class="author-link" href="<?php the_author_meta('url'); ?>" target="_blank"><?php the_author_meta('url'); ?></a><br />
  50. <p><?php the_author_meta('description'); ?></p>
  51. </div><!-- end .autor-info -->
  52. </div><!-- end .entry -->
  53. <div class="clear"></div>
  54. </div><!-- end .author-meta -->
  55. <?php else: ?> <hr /> <?php endif; ?>
  56.  
  57.  
  58.  
  59. <div class="clear"></div>
  60.  
  61. <div class="entry-bottom">
  62. <?php if (get_comments_number()==0) {
  63. } else { ?>
  64. <h3 class="title"><span><?php _e( 'Comments', 'anthemes' ); ?></span></h3>
  65. <?php } ?>
  66.  
  67. <!-- Comments -->
  68. <div class="comments">
  69. <?php comments_template('', true); // comments ?>
  70. </div>
  71. <div class="clear"></div>
  72. </div><!-- end .entry-bottom -->
  73.  
  74. </div><!-- end #main content -->
  75.  
  76.  
  77.  
  78.  
  79.  
  80. <div class="clear"></div>
  81. </section><!-- end .wrap -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement