Sep
11

Hi,

Many of the wordpress users wants to separate the comments and trackbacks in their blog. I have described one tweak – hack here for the same. First, you want to clean up your trackbacks/pingbacks by only displaying the title instead of an excerpt and everything else. For that you need to find this code in comments.php file of your theme:

<ol>
<?php wp_list_comments(‘type=pings’); ?>

Replace with:

<ol>
<?php wp_list_comments(‘type=pings&callback=list_pings’); ?>

Now, you need to add this code to functions.php file of your theme:

<?php
function list_pings($comment, $args, $depth) {
$GLOBALS['comment'] = $comment;
?>
<li id=”comment-<?php comment_ID(); ?>”><?php comment_author_link(); ?>
<?php } ?>

Now, you need to fix the comment count to only show actual comments and filtering out the trackbacks/pingbacks which are included in your comment count by default. For that add this code to functions.php file.

<?php
add_filter(‘get_comments_number’, ‘comment_count’, 0);
function comment_count( $count ) {
if ( ! is_admin() ) {
global $id;
$comments_by_type = &separate_comments(get_comments(’status=approve&post_id=’ . $id));
return count($comments_by_type['comment']);
} else {
return $count;
}
}
?>

That’s it!

Thanks,

Shane G.

Popularity: 1%

Related posts:
  1. How To Disable Comments On More Than X Days Old Posts In Wordpress Blog Hi, Many wordpress users wants to disable comments on posts...
  2. How To Add Comments Number Support In Wordpress Theme Hi, When we adds comment number support to the wordpress...
  3. How To Display Comments on Index Page In Wordpress? Hi, I like to display comments on index page rather...
  4. How To Display Most Commented Posts In Wordpress Blog Hi, Please use this code to display the posts that...
  5. How To Remove Canonical Links From Comments In Wordpress Blog? Hi, We can easily remove canonical/duplicate comments with the help...

Comments in this topic:

  1. Money Magazine 2 | Topwordpresstheme Says:

    [...] How To Separate Trackback From Comments In Wordpress Blog … [...]

  2. Website Directory - ???????? Says:

    [...] How To Separate Trackback From Comments In Wordpress Blog … [...]

Leave a Reply

You must be logged in to post a comment.