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-admin/options-writing.php | 239 ++++++++++++++++++++++++++++ 1 file changed, 239 insertions(+) create mode 100644 srcs/wordpress/wp-admin/options-writing.php (limited to 'srcs/wordpress/wp-admin/options-writing.php') diff --git a/srcs/wordpress/wp-admin/options-writing.php b/srcs/wordpress/wp-admin/options-writing.php new file mode 100644 index 0000000..1ea19cd --- /dev/null +++ b/srcs/wordpress/wp-admin/options-writing.php @@ -0,0 +1,239 @@ +add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' ), + 'content' => '

' . __( 'You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.' ) . '

' . + '

' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '

', + ) +); + +/** This filter is documented in wp-admin/options.php */ +if ( apply_filters( 'enable_post_by_email_configuration', true ) ) { + get_current_screen()->add_help_tab( + array( + 'id' => 'options-postemail', + 'title' => __( 'Post Via Email' ), + 'content' => '

' . __( 'Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.' ) . '

', + ) + ); +} + +/** This filter is documented in wp-admin/options-writing.php */ +if ( apply_filters( 'enable_update_services_configuration', true ) ) { + get_current_screen()->add_help_tab( + array( + 'id' => 'options-services', + 'title' => __( 'Update Services' ), + 'content' => '

' . __( 'If desired, WordPress will automatically alert various services of your new posts.' ) . '

', + ) + ); +} + +get_current_screen()->set_help_sidebar( + '

' . __( 'For more information:' ) . '

' . + '

' . __( 'Documentation on Writing Settings' ) . '

' . + '

' . __( 'Support' ) . '

' +); + +include( ABSPATH . 'wp-admin/admin-header.php' ); +?> + +
+

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+

+ %s', wp_generate_password( 8, false ) ), + sprintf( '%s', wp_generate_password( 8, false ) ), + sprintf( '%s', wp_generate_password( 8, false ) ) + ); + ?> +

+ + + + + + + + + + + + + + + + + + + + + + + +

+ + + +

+ + + + + +

+ Update Services because of your site’s visibility settings.' ), + __( 'https://codex.wordpress.org/Update_Services' ), + 'options-reading.php' + ); + ?> +

+ + + + + + + +
+
+ + -- cgit