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-reading.php | 218 ---------------------------- 1 file changed, 218 deletions(-) delete mode 100644 srcs/wordpress/wp-admin/options-reading.php (limited to 'srcs/wordpress/wp-admin/options-reading.php') diff --git a/srcs/wordpress/wp-admin/options-reading.php b/srcs/wordpress/wp-admin/options-reading.php deleted file mode 100644 index 662954e..0000000 --- a/srcs/wordpress/wp-admin/options-reading.php +++ /dev/null @@ -1,218 +0,0 @@ -add_help_tab( - array( - 'id' => 'overview', - 'title' => __( 'Overview' ), - 'content' => '

' . __( 'This screen contains the settings that affect the display of your content.' ) . '

' . - '

' . sprintf( - /* translators: %s: URL to create a new page. */ - __( 'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.' ), - 'post-new.php?post_type=page' - ) . '

' . - '

' . sprintf( - /* translators: %s: Documentation URL. */ - __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. Learn more about feeds.' ), - __( 'https://wordpress.org/support/article/wordpress-feeds/' ) - ) . '

' . - '

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

', - ) -); - -get_current_screen()->add_help_tab( - array( - 'id' => 'site-visibility', - 'title' => has_action( 'blog_privacy_selector' ) ? __( 'Site Visibility' ) : __( 'Search Engine Visibility' ), - 'content' => '

' . __( 'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen. Note that your privacy is not complete; your site is still visible on the web.' ) . '

' . - '

' . __( 'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search Engines Discouraged,” to remind you that your site is not being crawled.' ) . '

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

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

' . - '

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

' . - '

' . __( 'Support' ) . '

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

- -
- 'blog_charset' ) ); -} -?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -- cgit