Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save webarthur/c6d6f77dbc8d3d98796ec8e00abbb48e to your computer and use it in GitHub Desktop.

Select an option

Save webarthur/c6d6f77dbc8d3d98796ec8e00abbb48e to your computer and use it in GitHub Desktop.
Remove trackbacks e pingbacks do contador do comentários
<?php
add_filter('get_comment_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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment