Created
September 19, 2016 15:25
-
-
Save isaumya/b49c78e12b58c0f9e04e031338f821dc to your computer and use it in GitHub Desktop.
Increase general user comment editing time in Simple Comment Editing WordPress Plugin
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 | |
| /** | |
| * Increase general user comment editing time | |
| * @plugin_name: Simple Comment Editing | |
| * @plugin_uri: https://wordpress.org/plugins/simple-comment-editing/ | |
| */ | |
| add_filter( 'sce_comment_time', function( $time_in_minutes ) { | |
| return 10; | |
| } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment