WordPress Configuration Sample File
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
<?php | |
// some code above | |
// ** Database settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define( 'DB_NAME', 'hashnode' ); | |
/** Database username */ | |
define( 'DB_USER', 'root' ); | |
/** Database password */ | |
define( 'DB_PASSWORD', '' ); | |
/** Database hostname */ | |
define( 'DB_HOST', 'localhost' ); | |
/** Database charset to use in creating database tables. */ | |
define( 'DB_CHARSET', 'utf8mb4' ); | |
/** The database collate type. Don't change this if in doubt. */ | |
define( 'DB_COLLATE', '' ); | |
// some code below | |
/** Sets up WordPress vars and included files. */ | |
require_once ABSPATH . 'wp-settings.php'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment