Skip to content

Instantly share code, notes, and snippets.

@salcode
Last active August 29, 2015 14:20
Show Gist options
  • Save salcode/a9f9f74529629be94eb7 to your computer and use it in GitHub Desktop.
Save salcode/a9f9f74529629be94eb7 to your computer and use it in GitHub Desktop.
Disable comments on WordPress website until the WordPress version is greater than 4.2.
<?php
global $wp_version;
if ( version_compare( $wp_version, '4.2', '<=' ) ) {
add_filter( 'comments_open', '__return_false' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment