Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save braddalton/5418259 to your computer and use it in GitHub Desktop.
Save braddalton/5418259 to your computer and use it in GitHub Desktop.
function wpsites_hide_comments_logged_out_users() {
if ( !is_user_logged_in() )
remove_action( 'genesis_after_post', 'genesis_get_comments_template' );
}
add_action( 'wp_enqueue_scripts', 'wpsites_hide_comments_logged_out_users' );
/**
* @author Brad Dalton - WP Sites
*
* @link http://wpsites.net/web-design/hide-comments-logged-out-users/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment