Last active
April 29, 2022 15:58
-
-
Save Pamps/3c39342a59e379e4712c6f51d79a566d to your computer and use it in GitHub Desktop.
Default WordPress setup
This file contains 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
in wp-config.php | |
define( 'DISALLOW_FILE_EDIT', true ); // disable file editor | |
define( 'WP_POST_REVISIONS', 10 ); // keep last 10 revisions | |
in functions.php | |
add_filter( 'auto_update_plugin', '__return_true' ); // auto update plugins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment