Change WordPress Table Prefix

Home » Snippets » Change WordPress Table Prefix
0

Created with:

WP Config Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the web site, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * MySQL settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */


// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'db_username' );
/** MySQL database password */
define( 'DB_PASSWORD', 'db_password' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** The Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );


/* Prefix For All Database Tables */
/**
* WordPress database table prefix.

* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'acme_company_';


/**#@+
* Authentication unique keys and salts.
*
* Change these to different unique phrases! You can generate these using
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
* You can change these at any point in time to invalidate all existing cookies.
* This will force all users to have to log in again.
*
* @since 2.6.0
 */
define('AUTH_KEY',         '7v:O0j45e-O_~+fkld,^/G 3.1pALO*^peA}|VW rIJ(bd%QUumQf$W=ZqRH}K66');
define('SECURE_AUTH_KEY',  '2%S U$BIV;@!?V=oU=D}T>-=#1@kZe~vZ+HEC(n;}igMcWJ<U5>sw3.YzQ/9!-|O');
define('LOGGED_IN_KEY',    'e:e=s)bSg:Q?iEK6C0J?t|jPDZmG^H-Bcudq0Wv] &+t2&|Q4:ZHh+4gE:!>B;i,');
define('NONCE_KEY',        't.&1Hc!}Wv5[}^@S^,0:Fe ^1Yo/:Rc4beT.6_!q[(JfVvfNQfFO`TY7A{.M1%Um');
define('AUTH_SALT',        ',|hKf)oHSpojWVy&M8;RtW#z<nSH /Fj;M,H~CA94>BL2=1=1;+<i8]m8lw/;#u(');
define('SECURE_AUTH_SALT', 'jWS,S`i4j*8{.q; D9k/c_y4Mnh=lc6t|CeuA/r-^yxz6@0wuQZ|4t(`TwpmxpD|');
define('LOGGED_IN_SALT',   'uPH1w`hLQOY!=%i$T5E~`-t--LF}-1ScqsH^EM$W]R!rwDnK>h,,r_|=,g2z C-r');
define('NONCE_SALT',       'E#+4A8=l~%TF0P:_U!S7aJf#aY&;6Y-4u|[V3I~9gW$Ic/iQ,-!g(Kn^d|p7=;7`');


/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
  define('ABSPATH', __DIR__ . '/');
/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');

			

Register an account to save your snippets or go Pro to get more features.