Skip to content

Instantly share code, notes, and snippets.

@isaumya
Created September 19, 2016 15:25
Show Gist options
  • Select an option

  • Save isaumya/b49c78e12b58c0f9e04e031338f821dc to your computer and use it in GitHub Desktop.

Select an option

Save isaumya/b49c78e12b58c0f9e04e031338f821dc to your computer and use it in GitHub Desktop.
Increase general user comment editing time in Simple Comment Editing WordPress Plugin
<?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