WordPress: how to separate comments and trackbacks
Today I read an interesting article on NETTUTS which claims to unravel the Secrets of WordPress & Comments.php File. This is actually pretty true, the author did a good job at explaining the different functions, comment loops, and form elements.
The one thing I really missed was an explanation on how to separate comments from trackbacks. Discussing on a blog with tons of trackback posts between the ongoing discussion is really annoying.
So here is my little addition to the NETTUTS tuorial:
How to separate comments from trackbacks in WordPress
First thing we need is a working peace of basic comment code, I’ll take the one from NETTUTS: (if you need any explanation on this piece of code, just read the aforementioned article)
<?php if($comments) : ?> <ol> <?php foreach($comments as $comment) : ?> <li id="comment-<?php comment_ID(); ?>"> <?php if ($comment->comment_approved == "0") : ?> <p>Your comment is awaiting approval</p> <?php endif; ?> <?php comment_text(); ?> <cite><?php comment_type(); ?> by <?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></cite> </li> <?php endforeach; ?> </ol> <?php else : ?> <p>No comments yet</p> <?php endif; ?>
Now we will use the function get_comment_type(); to check which kind of comment this is. The function returns one of three possible values: pingback, trackback or a comment.
Our first target is to display only the comments. This is easily accomplished with an additional if statement:
<?php if($comments) : ?> <ol> <?php foreach($comments as $comment) : ?> <?php if(get_comment_type() == "comment") : ?> <li id="comment-<?php comment_ID(); ?>"> <?php if ($comment->comment_approved == "0") : ?> <p>Your comment is awaiting approval</p> <?php endif; ?> <?php comment_text(); ?> <cite><?php comment_type(); ?> by <?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></cite> </li> <?php endif; ?> <?php endforeach; ?> </ol> <?php else : ?> <p>No comments yet</p> <?php endif; ?>
If you don’t want to display trackbacks you are done now. In case you want to show them, you have to call the comment loop a second time, this time only displaying the comment, if get_comment_type() returns pingback or trackback.
<?php if($comments) : ?> <ol> <?php foreach($comments as $comment) : ?> <?php if((get_comment_type() == "pingback") || (get_comment_type() == "trackback")) : ?> <li id="comment-<?php comment_ID(); ?>"> <?php comment_author_link() ?></li> </li> <?php endif; ?> <?php endforeach; ?> </ol> <?php endif; ?>
Thats it, not that hard to master and a big improvement in readability for your ongoing discussions.
I agree, keeping separate trackbacks and comments is definitely useful.
nice …
thanks for sharing …
hi
would you please post a tutorial regarding how to create a comment box in the website for us, please (?) .. i really like your works .. and thank you so much for sharing w/ us ..
t.
what do you mean by “comment box”?
thank you
hi Kriesi,
it is the box that we leave message on the website (like i’m doing now) .. i searched the information online but didn’t have much luck .. if you have time, would you please teach me how to create the box for people to leave comments or if would you please refer me to any link that teach how to create the comment box, please .. by the way, i’m the new learner too .. thank you so much for replying ..
t.
Круто! Ротуда Ñ‚Ð°ÐºÐ°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ , еÑли не Ñекрет.;)?
Your post makes one think! Great article. Thanks for allowing me to comment!
Very Good!!
I Like!!
Great blog. I like layout!!!!
I really like the work you’ve done with AJAX as well as your tutorials. This specific tutorial can be found in various forms on the web. I wouldn’t mind seeing something new, such as an AJAX tabbed version to switch between the comments & trackbacks.
I’ve noticed that when there is no Trackback on a blog entry, we see an invalid markup due to the empty tag…is there a way around this??
no matter it was my fault, I had the ol tag outside the if statement….lol
I enjoyed reading your work! GREAT post! I looked around for this… but I found you! :) Anyway, would you mind if I threw up a backlink from my site at whiterabbitcult.com to your site?
dfdfdf
Zdraste! Vot takoi vot u vas horoshiy sait. Spasibki.