Advertisement
nlozovan

Untitled

Apr 24th, 2014
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. SEARCH:
  2. if( comments_open() ){
  3. if( options::logic( 'general' , 'fb_comments' ) ){
  4. ?>
  5. <div id="comments">
  6. <h3 id="reply-title"><?php _e( 'Leave a reply' , 'cosmotheme' ); ?></h3>
  7. <p class="delimiter">&nbsp;</p>
  8. <fb:comments href="<?php the_permalink(); ?>" num_posts="5" width="620" height="120" reverse="true"></fb:comments>
  9. </div>
  10. <?php
  11. }else{
  12. comments_template( '', true );
  13. }
  14. }
  15.  
  16.  
  17. EDIT IN:
  18.  
  19.  
  20. if( comments_open() ){
  21.  
  22. ?>
  23. <div id="comments">
  24. <h3 id="reply-title"><?php _e( 'Leave a reply' , 'cosmotheme' ); ?></h3>
  25. <p class="delimiter">&nbsp;</p>
  26. <fb:comments href="<?php the_permalink(); ?>" num_posts="5" width="620" height="120" reverse="true"></fb:comments>
  27. </div>
  28. <?php
  29.  
  30. comments_template( '', true );
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement