wp/wp-config-sample.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
child 18 be944660c56a
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
    11  * * MySQL settings
    11  * * MySQL settings
    12  * * Secret keys
    12  * * Secret keys
    13  * * Database table prefix
    13  * * Database table prefix
    14  * * ABSPATH
    14  * * ABSPATH
    15  *
    15  *
    16  * @link https://codex.wordpress.org/Editing_wp-config.php
    16  * @link https://wordpress.org/support/article/editing-wp-config-php/
    17  *
    17  *
    18  * @package WordPress
    18  * @package WordPress
    19  */
    19  */
    20 
    20 
    21 // ** MySQL settings - You can get this info from your web host ** //
    21 // ** MySQL settings - You can get this info from your web host ** //
    71  * Change this to true to enable the display of notices during development.
    71  * Change this to true to enable the display of notices during development.
    72  * It is strongly recommended that plugin and theme developers use WP_DEBUG
    72  * It is strongly recommended that plugin and theme developers use WP_DEBUG
    73  * in their development environments.
    73  * in their development environments.
    74  *
    74  *
    75  * For information on other constants that can be used for debugging,
    75  * For information on other constants that can be used for debugging,
    76  * visit the Codex.
    76  * visit the documentation.
    77  *
    77  *
    78  * @link https://codex.wordpress.org/Debugging_in_WordPress
    78  * @link https://wordpress.org/support/article/debugging-in-wordpress/
    79  */
    79  */
    80 define( 'WP_DEBUG', false );
    80 define( 'WP_DEBUG', false );
    81 
    81 
    82 /* That's all, stop editing! Happy publishing. */
    82 /* That's all, stop editing! Happy publishing. */
    83 
    83 
    84 /** Absolute path to the WordPress directory. */
    84 /** Absolute path to the WordPress directory. */
    85 if ( ! defined( 'ABSPATH' ) ) {
    85 if ( ! defined( 'ABSPATH' ) ) {
    86 	define( 'ABSPATH', dirname( __FILE__ ) . '/' );
    86 	define( 'ABSPATH', __DIR__ . '/' );
    87 }
    87 }
    88 
    88 
    89 /** Sets up WordPress vars and included files. */
    89 /** Sets up WordPress vars and included files. */
    90 require_once( ABSPATH . 'wp-settings.php' );
    90 require_once ABSPATH . 'wp-settings.php';