From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- srcs/wordpress/wp-admin/options-writing.php | 239 ---------------------------- 1 file changed, 239 deletions(-) delete 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 deleted file mode 100644 index 1ea19cd..0000000 --- a/srcs/wordpress/wp-admin/options-writing.php +++ /dev/null @@ -1,239 +0,0 @@ -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