Last active
February 21, 2024 21:34
-
-
Save igorbenic/56f84e0101d28ab0278f654d1e253ca7 to your computer and use it in GitHub Desktop.
Simple Feature Requests & GeneratePress snippets
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_action( 'jck_sfr_after_single_loop', 'jck_disable_theme_comments'); | |
/** | |
* Disable the default theme comments form by disabling comments after the plugin comments form is rendered. | |
*/ | |
function jck_disable_theme_comments() { | |
add_filter( 'comments_open', function( $open, $post_id ) { | |
if ( 'cpt_feature_requests' === get_post_type( $post_id ) ) { | |
return false; | |
} | |
return $open; | |
}, 20, 2 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment