diff options
author | Aaron Jorbin <jorbin@git.wordpress.org> | 2021-05-14 19:33:05 +0000 |
---|---|---|
committer | Aaron Jorbin <jorbin@git.wordpress.org> | 2021-05-14 19:33:05 +0000 |
commit | 62d35aae07b449b9337eff32a7ddb91f0be062d5 (patch) | |
tree | 1325b437618f09941230a364ae52ba7059c1f64a /wp-config-sample.php | |
parent | dc1d54ae3a143b06b233f117f540e2cd9964aa7f (diff) | |
download | wordpress-62d35aae07b449b9337eff32a7ddb91f0be062d5.tar.gz wordpress-62d35aae07b449b9337eff32a7ddb91f0be062d5.zip |
Boostrap/Load: Strengthen language in wp-config-sample.php
Make it clearer where custom pieces belong in wp-config.php
Props kraftbj, jorbin.
Fixes #37199.
git-svn-id: https://develop.svn.wordpress.org/trunk@50915 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'wp-config-sample.php')
-rw-r--r-- | wp-config-sample.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/wp-config-sample.php b/wp-config-sample.php index bb04ed6986..aa10cf6ced 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -79,7 +79,15 @@ $table_prefix = 'wp_'; */
define( 'WP_DEBUG', false );
-/* That's all, stop editing! Happy publishing. */
+/** Add any custom values after this line. */
+
+
+
+/**
+ * Custom Values must appear above this line.
+ *
+ * That's all, stop editing! Happy publishing.
+ */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
|