Make WordPress Core


Ignore:
Timestamp:
05/10/2015 12:05:30 AM (10 years ago)
Author:
DrewAPicture
Message:

Lightly clean up and improve inline documentation in wp-config-sample.php.

  • Fixes some grammatical and wrapping issues in the file header, and breaks the contents list up into, well, a list.
  • Adds a note and Codex link to the DocBlock for the WP_DEBUG constant definition on where to find more information about constants used for debugging.

Fixes #28551.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-config-sample.php

    r32116 r32479  
    11<?php
    22/**
    3  * The base configurations of the WordPress.
     3 * The base configuration for WordPress
    44 *
    5  * This file has the following configurations: MySQL settings, Table Prefix,
    6  * Secret Keys, and ABSPATH. You can find more information by visiting
    7  * {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
    8  * Codex page. You can get the MySQL settings from your web host.
     5 * The wp-config.php creation script uses this file during the
     6 * installation. You don't have to use the web site, you can
     7 * copy this file to "wp-config.php" and fill in the values.
    98 *
    10  * This file is used by the wp-config.php creation script during the
    11  * installation. You don't have to use the web site, you can just copy this file
    12  * to "wp-config.php" and fill in the values.
     9 * This file contains the following configurations:
     10 *
     11 * * MySQL settings
     12 * * Secret keys
     13 * * Database table prefix
     14 * * ABSPATH
     15 *
     16 * @link https://codex.wordpress.org/Editing_wp-config.php
    1317 *
    1418 * @package WordPress
     
    5761 * WordPress Database Table prefix.
    5862 *
    59  * You can have multiple installations in one database if you give each a unique
    60  * prefix. Only numbers, letters, and underscores please!
     63 * You can have multiple installations in one database if you give each
     64 * a unique prefix. Only numbers, letters, and underscores please!
    6165 */
    6266$table_prefix  = 'wp_';
     
    6872 * It is strongly recommended that plugin and theme developers use WP_DEBUG
    6973 * in their development environments.
     74 *
     75 * For information on other constants that can be used for debugging,
     76 * visit the Codex.
     77 *
     78 * @link https://codex.wordpress.org/Debugging_in_WordPress
    7079 */
    7180define('WP_DEBUG', false);
Note: See TracChangeset for help on using the changeset viewer.