Created
July 15, 2016 05:18
-
-
Save webarthur/c6d6f77dbc8d3d98796ec8e00abbb48e to your computer and use it in GitHub Desktop.
Remove trackbacks e pingbacks do contador do comentários
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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