I’m trying to show twitter mentions/ tweetbacks along with comments in P2. The tweetbacks plugin is one way to do it but it doesn’t seem to work in P2, because it handles comments differently from normal themes.
Specifically, where can I find the equivalent of the comment loop in P2?
<div class=”navigation”>
<div class=”alignleft”><?php previous_comments_link() ?></div>
<div class=”alignright”><?php next_comments_link() ?></div>
</div>
<?php else : // this is displayed if there are no comments so far ?>
<?php if (‘open’ == $post->comment_status) : ?>
<!- If comments are open, but there are no comments. ->
<?php else : // comments are closed ?>
<!- If comments are closed. ->
<p class=”nocomments”>Comments are closed.</p>
<?php endif; ?>
<?php endif; ?>
Gauravonomics on “How to show twitter mentions/ tweetbacks along with comments in P2″