mirrored from git://develop.git.wordpress.org/
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: HTML API: Add support for H1-H6 elements in HTML Processor
- Loading branch information
Showing
6 changed files
with
234 additions
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<?php | ||
/** | ||
* 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: | ||
* | ||
* * Database settings | ||
* * Secret keys | ||
* * Database table prefix | ||
* * Localized language | ||
* * ABSPATH | ||
* | ||
* @link https://wordpress.org/support/article/editing-wp-config-php/ | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
// ** Database settings - You can get this info from your web host ** // | ||
/** The name of the database for WordPress */ | ||
define( 'DB_NAME', 'wordpress' ); | ||
|
||
/** Database username */ | ||
define( 'DB_USER', 'wpuser' ); | ||
|
||
/** Database password */ | ||
define( 'DB_PASSWORD', 'wpuser' ); | ||
|
||
/** Database hostname */ | ||
define( 'DB_HOST', 'localhost' ); | ||
|
||
/** Database charset to use in creating database tables. */ | ||
define( 'DB_CHARSET', 'utf8' ); | ||
|
||
/** The database collate type. Don't change this if in doubt. */ | ||
define( 'DB_COLLATE', '' ); | ||
|
||
/**#@+ | ||
* 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', 'MFk^p/>nn@&%|l0flI6:VON4WelK EeRqf)a&EbFfG8@ ]R} )D`N12^th4_{TNi' ); | ||
define( 'SECURE_AUTH_KEY', 'qD9}:B2$6*w7.{;!pZk]]D?y=D[zz#lpqm4c&+j049^v</e* <RsC=g|z_3#dfz/' ); | ||
define( 'LOGGED_IN_KEY', '@ cguVQ){hG;:44OKIkU>BVf8 Y]IxSA+2x%n<xSO;vXchw3B*{t_7t9.<02/eaE' ); | ||
define( 'NONCE_KEY', 'N@B>H_[KqJk|nbOyBKF}Ir[VF8`qC Zk+g_$C1XL@C|WMRv*Q<4R,]f6Lbu_)#ml' ); | ||
define( 'AUTH_SALT', '^o|a:{J &rTHA?qheBwZE?;2xh&P_S{D:nxI!/|+@n[z-C^z*rr,fxhg *,&7vrB' ); | ||
define( 'SECURE_AUTH_SALT', 'fhk&Z4_rl|=U,kC!pMlJz@afe#]uRH>:I6k>Q bcz/3E9TV`JEyN.Rk)baXDJM&8' ); | ||
define( 'LOGGED_IN_SALT', 'w2Dl23NuZNJU<9+ -8F{l%eZAjXN,D,8=k#<x]qD]i:<iZ%5eXw2!minSwH[HeR<' ); | ||
define( 'NONCE_SALT', '2!<_+:wZY-u}n/3LKW2WQ@/jbznNOp{AQ*W({%v1lK4vUh| 9KBPERun/iWrfp$b' ); | ||
define( 'WP_CACHE_KEY_SALT', ')5>>.k$IuAf/ZtoryWohrIgGRpiv{t<?sg~lLJZu)|+4h(Cu3FBY:E7gl}PPw|/3' ); | ||
|
||
|
||
/**#@-*/ | ||
|
||
/** | ||
* 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 = 'wp_'; | ||
|
||
|
||
/* Add any custom values between this line and the "stop editing" line. */ | ||
|
||
|
||
|
||
/** | ||
* For developers: WordPress debugging mode. | ||
* | ||
* Change this to true to enable the display of notices during development. | ||
* It is strongly recommended that plugin and theme developers use WP_DEBUG | ||
* in their development environments. | ||
* | ||
* For information on other constants that can be used for debugging, | ||
* visit the documentation. | ||
* | ||
* @link https://wordpress.org/support/article/debugging-in-wordpress/ | ||
*/ | ||
if ( ! defined( 'WP_DEBUG' ) ) { | ||
define( 'WP_DEBUG', true ); | ||
} | ||
|
||
define( 'WP_DEBUG_LOG', true ); | ||
define( 'WP_DEBUG_DISPLAY', true ); | ||
define( 'SCRIPT_DEBUG', true ); | ||
define( 'WP_ENVIRONMENT_TYPE', 'local' ); | ||
define( 'WP_DEVELOPMENT_MODE', 'core' ); | ||
/* That's all, stop editing! Happy publishing. */ | ||
|
||
/** 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'; |
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
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
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
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
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