Skip to content

Commit

Permalink
💡 Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
retlehs authored Mar 1, 2023
1 parent de66196 commit cbc53e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config/application.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,14 @@
*/
Config::define('AUTOMATIC_UPDATER_DISABLED', true);
Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false);

// Disable the plugin and theme file editor in the admin
Config::define('DISALLOW_FILE_EDIT', true);

// Disable plugin and theme updates and installation from the admin
Config::define('DISALLOW_FILE_MODS', true);
// Limit the number of post revisions that Wordpress stores (true (default WP): store every revision)

// Limit the number of post revisions
Config::define('WP_POST_REVISIONS', env('WP_POST_REVISIONS') ?? true);

/**
Expand Down

0 comments on commit cbc53e0

Please sign in to comment.