Created
March 2, 2014 18:59
-
-
Save nicholasohrn/9311741 to your computer and use it in GitHub Desktop.
Only display comments from registered users
This file contains 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 | |
function registered_users_only_comment_feed_where($where, $query) { | |
return $where . " AND user_id > 0"; | |
} | |
add_filter('comment_feed_where', 'registered_users_only_comment_feed_where', 10, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment