Guest User

Untitled

a guest
Apr 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <div class="post">
  2. <h2><a href="<?php the_permalink() ?>"><span><?php the_title(); ?></span></a></h2>
  3. <?php the_content('Read more...'); ?>
  4. /* If user is on homepage, call comments_tempate to the homepage, else it is not displayed */
  5. <?php if (is_home()) { ?>
  6. <?php comments_template(); ?>
  7. <?php } ?>
  8. <?php if (is_single()) { ?>
  9. <div class="misc-comments">
  10. <div class="links">
  11. <div class="comments-pop-up">
  12. <?php comments_popup_link('No comments', '1 comment', '% comments', 'lightwindow'); ?>
  13. </div>
  14. <div class="comments-link"><a href="<?php comments_link(); ?>" target="_blank"><span><?php comments_link(); ?></span></a></div>
  15. <div class="comments-email"><?php //email_link(); ?><a href=""></a></div>
  16. <div class="social-stuff"><?php if (function_exists('sociable_html')) { print sociable_html(); } ?></div>
  17. </div>
  18. <?php comments_template(); ?>
  19. <div class="clear"></div>
  20. </div>
  21. <?php } ?>
  22. </div>
Add Comment
Please, Sign In to add comment