From 7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 7 Jan 2020 13:06:14 +0100 Subject: Added wordpress --- srcs/wordpress/wp-load.php | 93 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 srcs/wordpress/wp-load.php (limited to 'srcs/wordpress/wp-load.php') diff --git a/srcs/wordpress/wp-load.php b/srcs/wordpress/wp-load.php new file mode 100644 index 0000000..2b8830b --- /dev/null +++ b/srcs/wordpress/wp-load.php @@ -0,0 +1,93 @@ +wp-config.php' + ) . '

'; + $die .= '

' . sprintf( + /* translators: %s: Documentation URL. */ + __( "Need more help? We got it." ), + __( 'https://wordpress.org/support/article/editing-wp-config-php/' ) + ) . '

'; + $die .= '

' . sprintf( + /* translators: %s: wp-config.php */ + __( "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ), + 'wp-config.php' + ) . '

'; + $die .= '

' . __( 'Create a Configuration File' ) . ''; + + wp_die( $die, __( 'WordPress › Error' ) ); +} -- cgit