2004-02-13 10:59:47 +01:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* General settings administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2006-11-18 08:31:29 +01:00
2017-08-22 13:52:48 +02:00
/** WordPress Translation Installation API */
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/includes/translation-install.php' ;
2014-11-13 18:01:24 +01:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'manage_options' ) ) {
2016-06-29 17:16:29 +02:00
wp_die ( __ ( 'Sorry, you are not allowed to manage options for this site.' ) );
2017-12-01 00:11:00 +01:00
}
2009-08-01 23:12:17 +02:00
2021-07-22 15:53:00 +02:00
// Used in the HTML title tag.
2017-12-01 00:11:00 +01:00
$title = __ ( 'General Settings' );
2008-08-22 01:18:51 +02:00
$parent_file = 'options-general.php' ;
2020-09-18 12:37:08 +02:00
/* translators: Date and time format for exact current time, mainly about timezones, see https://www.php.net/manual/datetime.format.php */
2017-12-01 00:11:00 +01:00
$timezone_format = _x ( 'Y-m-d H:i:s' , 'timezone date format' );
2006-11-18 08:31:29 +01:00
2017-12-01 00:11:00 +01:00
add_action ( 'admin_head' , 'options_general_add_js' );
2008-10-13 20:32:16 +02:00
2017-12-01 00:11:00 +01:00
$options_help = '<p>' . __ ( 'The fields on this screen determine some of the basics of your site setup.' ) . '</p>' .
Help/About: Improve help text about the WordPress URL and Site URL settings.
This aims to elaborate a bit more on the difference between these two settings, as well as explain the `http://` or `https://` prefix.
Follow-up to [15000], [19472].
Props marybaum, sabernhardt, tobifjellner, justinahinon, webcommsat, hellofromtonya, audrasjb, robinwpdeveloper, costdev, SergeyBiryukov.
Fixes #50886.
Built from https://develop.svn.wordpress.org/trunk@55452
git-svn-id: http://core.svn.wordpress.org/trunk@54985 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-03-01 18:03:19 +01:00
'<p>' . __ ( 'Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.' ) . '</p>' ;
2011-11-29 19:23:04 +01:00
if ( ! is_multisite () ) {
Help/About: Improve help text about the WordPress URL and Site URL settings.
This aims to elaborate a bit more on the difference between these two settings, as well as explain the `http://` or `https://` prefix.
Follow-up to [15000], [19472].
Props marybaum, sabernhardt, tobifjellner, justinahinon, webcommsat, hellofromtonya, audrasjb, robinwpdeveloper, costdev, SergeyBiryukov.
Fixes #50886.
Built from https://develop.svn.wordpress.org/trunk@55452
git-svn-id: http://core.svn.wordpress.org/trunk@54985 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-03-01 18:03:19 +01:00
$options_help .= '<p>' . __ ( 'Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.' ) . '</p>' .
'<p>' . sprintf (
/* translators: %s: Documentation URL. */
__ ( 'Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (<code>https://example.com</code>), in which case the two URLs would be the same. Or the <a href="%s">WordPress files can be in a subdirectory</a> (<code>https://example.com/wordpress</code>). In that case, the WordPress URL and the site URL would be different.' ),
__ ( 'https://wordpress.org/documentation/article/giving-wordpress-its-own-directory/' )
) . '</p>' .
'<p>' . sprintf (
/* translators: 1: http://, 2: https:// */
__ ( 'Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.' ),
'<code>http://</code>' ,
'<code>https://</code>'
) . '</p>' .
'<p>' . __ ( 'If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.' ) . '</p>' ;
2011-11-29 19:23:04 +01:00
}
Help/About: Improve help text about the WordPress URL and Site URL settings.
This aims to elaborate a bit more on the difference between these two settings, as well as explain the `http://` or `https://` prefix.
Follow-up to [15000], [19472].
Props marybaum, sabernhardt, tobifjellner, justinahinon, webcommsat, hellofromtonya, audrasjb, robinwpdeveloper, costdev, SergeyBiryukov.
Fixes #50886.
Built from https://develop.svn.wordpress.org/trunk@55452
git-svn-id: http://core.svn.wordpress.org/trunk@54985 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-03-01 18:03:19 +01:00
$options_help .= '<p>' . __ ( 'You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).' ) . '</p>' .
2014-12-02 06:15:23 +01:00
'<p>' . __ ( 'UTC means Coordinated Universal Time.' ) . '</p>' .
2011-12-02 05:31:01 +01:00
'<p>' . __ ( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>' ;
2011-11-29 19:23:04 +01:00
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'overview' ,
'title' => __ ( 'Overview' ),
'content' => $options_help ,
)
);
2011-11-02 04:12:37 +01:00
2011-11-02 21:14:10 +01:00
get_current_screen () -> set_help_sidebar (
2017-12-01 00:11:00 +01:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2023-02-23 11:38:21 +01:00
'<p>' . __ ( '<a href="https://wordpress.org/documentation/article/settings-general-screen/">Documentation on General Settings</a>' ) . '</p>' .
'<p>' . __ ( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
2010-05-27 21:05:59 +02:00
);
2010-01-15 17:58:36 +01:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2004-02-13 10:59:47 +01:00
?>
2007-06-14 04:25:30 +02:00
2006-01-10 06:16:17 +01:00
< div class = " wrap " >
2015-06-27 17:41:25 +02:00
< h1 >< ? php echo esc_html ( $title ); ?> </h1>
2008-10-17 22:02:03 +02:00
2014-07-08 19:52:14 +02:00
< form method = " post " action = " options.php " novalidate = " novalidate " >
2017-12-01 00:11:00 +01:00
< ? php settings_fields ( 'general' ); ?>
2008-10-14 03:18:52 +02:00
2019-05-24 23:56:54 +02:00
< table class = " form-table " role = " presentation " >
2017-08-14 22:13:43 +02:00
2014-01-24 20:06:15 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " blogname " >< ? php _e ( 'Site Title' ); ?> </label></th>
< td >< input name = " blogname " type = " text " id = " blogname " value = " <?php form_option( 'blogname' ); ?> " class = " regular-text " /></ td >
2007-09-04 01:32:58 +02:00
</ tr >
2017-08-14 22:13:43 +02:00
Administration: Change default site tagline to an empty string.
This changeset replaces the default "Just another WordPress site" tagline with an empty string for new installations. The reasoning is:
1. Not all themes display the tagline;
2. Not everyone changes the default tagline;
3. When people don't see the tagline in their theme, they may not realize it is still visible in some places, like feeds.
The string "Just another WordPress site" and the related multisite string: "Just another {NETWORK} site" are now only used as a placeholder for the tagline admin option.
Props markjaquith, Denis-de-Bernardy, westi, RyanMurphy, kovshenin, SergeyBiryukov, chriscct7, tyxla, hyperbrand, karmatosed, lukecavanagh, melchoyce, boemedia, khag7, sabernhardt, audrasjb, peterwilsoncc, costdev, martinkrcho, rafiahmedd.
Fixes #6479.
Built from https://develop.svn.wordpress.org/trunk@53815
git-svn-id: http://core.svn.wordpress.org/trunk@53374 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-03 14:20:16 +02:00
< ? php
/* translators: Site tagline. */
$sample_tagline = __ ( 'Just another WordPress site' );
if ( is_multisite () ) {
/* translators: %s: Network title. */
$sample_tagline = sprintf ( __ ( 'Just another %s site' ), get_network () -> site_name );
}
?>
2014-01-24 20:06:15 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " blogdescription " >< ? php _e ( 'Tagline' ); ?> </label></th>
Administration: Change default site tagline to an empty string.
This changeset replaces the default "Just another WordPress site" tagline with an empty string for new installations. The reasoning is:
1. Not all themes display the tagline;
2. Not everyone changes the default tagline;
3. When people don't see the tagline in their theme, they may not realize it is still visible in some places, like feeds.
The string "Just another WordPress site" and the related multisite string: "Just another {NETWORK} site" are now only used as a placeholder for the tagline admin option.
Props markjaquith, Denis-de-Bernardy, westi, RyanMurphy, kovshenin, SergeyBiryukov, chriscct7, tyxla, hyperbrand, karmatosed, lukecavanagh, melchoyce, boemedia, khag7, sabernhardt, audrasjb, peterwilsoncc, costdev, martinkrcho, rafiahmedd.
Fixes #6479.
Built from https://develop.svn.wordpress.org/trunk@53815
git-svn-id: http://core.svn.wordpress.org/trunk@53374 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-03 14:20:16 +02:00
< td >< input name = " blogdescription " type = " text " id = " blogdescription " aria - describedby = " tagline-description " value = " <?php form_option( 'blogdescription' ); ?> " class = " regular-text " placeholder = " <?php echo $sample_tagline ; ?> " />
2017-12-01 00:11:00 +01:00
< p class = " description " id = " tagline-description " >< ? php _e ( 'In a few words, explain what this site is about.' ); ?> </p></td>
2007-09-04 01:32:58 +02:00
</ tr >
2017-08-14 22:13:43 +02:00
2017-11-23 05:09:49 +01:00
< ? php
2017-12-01 00:11:00 +01:00
if ( ! is_multisite () ) {
2019-07-01 14:52:01 +02:00
$wp_site_url_class = '' ;
$wp_home_class = '' ;
2017-12-01 00:11:00 +01:00
if ( defined ( 'WP_SITEURL' ) ) {
$wp_site_url_class = ' disabled' ;
}
if ( defined ( 'WP_HOME' ) ) {
$wp_home_class = ' disabled' ;
}
2018-08-17 03:51:36 +02:00
?>
2017-08-14 22:13:43 +02:00
2014-01-24 20:06:15 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " siteurl " >< ? php _e ( 'WordPress Address (URL)' ); ?> </label></th>
2017-11-23 05:09:49 +01:00
< td >< input name = " siteurl " type = " url " id = " siteurl " value = " <?php form_option( 'siteurl' ); ?> " < ? php disabled ( defined ( 'WP_SITEURL' ) ); ?> class="regular-text code<?php echo $wp_site_url_class; ?>" /></td>
2007-09-04 01:32:58 +02:00
</ tr >
2017-08-14 22:13:43 +02:00
2014-01-24 20:06:15 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " home " >< ? php _e ( 'Site Address (URL)' ); ?> </label></th>
2017-11-23 05:09:49 +01:00
< td >< input name = " home " type = " url " id = " home " aria - describedby = " home-description " value = " <?php form_option( 'home' ); ?> " < ? php disabled ( defined ( 'WP_HOME' ) ); ?> class="regular-text code<?php echo $wp_home_class; ?>" />
2018-08-17 03:51:36 +02:00
< ? php if ( ! defined ( 'WP_HOME' ) ) : ?>
2017-12-01 00:11:00 +01:00
< p class = " description " id = " home-description " >
2018-08-17 03:51:36 +02:00
< ? php
printf (
2019-09-03 02:41:05 +02:00
/* translators: %s: Documentation URL. */
2022-10-25 16:22:12 +02:00
__ ( 'Enter the same address here unless you <a href="%s">want your site home page to be different from your WordPress installation directory</a>.' ),
2023-02-23 11:38:21 +01:00
__ ( 'https://wordpress.org/documentation/article/giving-wordpress-its-own-directory/' )
2018-08-17 03:51:36 +02:00
);
?>
2017-12-01 00:11:00 +01:00
</ p >
2015-10-28 05:54:26 +01:00
< ? php endif ; ?>
2017-10-24 12:51:52 +02:00
</ td >
2005-08-07 21:23:41 +02:00
</ tr >
2017-08-14 22:13:43 +02:00
< ? php } ?>
2014-01-24 20:06:15 +01:00
< tr >
2019-08-07 02:04:56 +02:00
< th scope = " row " >< label for = " new_admin_email " >< ? php _e ( 'Administration Email Address' ); ?> </label></th>
2017-08-14 22:13:43 +02:00
< td >< input name = " new_admin_email " type = " email " id = " new_admin_email " aria - describedby = " new-admin-email-description " value = " <?php form_option( 'admin_email' ); ?> " class = " regular-text ltr " />
Administration: Remove self-reference ("we") in WordPress Admin.
This changes updates many strings to remove self-references to an undefined "we" collective across the WordPress Administration.
The goal of this change is to better match the guidelines and recommendations set forth in the make/core handbook, specifically:
> the word "we" should be avoided (…) unless its made very clear which group is speaking.
Props johnbillion, shital-patel, audrasjb, marybaum, SergeyBiryukov, peterwilsoncc, johnjamesjacoby, kebbet, costdev, chaion07, davidbaumwald.
Fixes #46057.
Built from https://develop.svn.wordpress.org/trunk@53131
git-svn-id: http://core.svn.wordpress.org/trunk@52720 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-11 13:42:04 +02:00
< p class = " description " id = " new-admin-email-description " >< ? php _e ( 'This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?> </p>
2017-08-14 22:13:43 +02:00
< ? php
$new_admin_email = get_option ( 'new_admin_email' );
2020-02-09 17:55:09 +01:00
if ( $new_admin_email && get_option ( 'admin_email' ) !== $new_admin_email ) :
2018-08-17 03:51:36 +02:00
?>
2017-08-14 22:13:43 +02:00
< div class = " updated inline " >
2017-12-01 00:11:00 +01:00
< p >
< ? php
2017-08-14 22:13:43 +02:00
printf (
2019-09-03 02:41:05 +02:00
/* translators: %s: New admin email. */
2017-08-14 22:13:43 +02:00
__ ( 'There is a pending change of the admin email to %s.' ),
'<code>' . esc_html ( $new_admin_email ) . '</code>'
);
printf (
' <a href="%1$s">%2$s</a>' ,
esc_url ( wp_nonce_url ( admin_url ( 'options.php?dismiss=new_admin_email' ), 'dismiss-' . get_current_blog_id () . '-new_admin_email' ) ),
__ ( 'Cancel' )
);
2017-12-01 00:11:00 +01:00
?>
</ p >
2017-08-14 22:13:43 +02:00
</ div >
< ? php endif ; ?>
</ td >
2005-08-07 21:23:41 +02:00
</ tr >
2017-08-14 22:13:43 +02:00
< ? php if ( ! is_multisite () ) { ?>
2014-01-24 20:06:15 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< ? php _e ( 'Membership' ); ?> </th>
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
< td > < fieldset >< legend class = " screen-reader-text " >< span >
< ? php
/* translators: Hidden accessibility text. */
_e ( 'Membership' );
?>
</ span ></ legend >< label for = " users_can_register " >
2017-12-01 00:11:00 +01:00
< input name = " users_can_register " type = " checkbox " id = " users_can_register " value = " 1 " < ? php checked ( '1' , get_option ( 'users_can_register' ) ); ?> />
2018-08-17 03:51:36 +02:00
< ? php _e ( 'Anyone can register' ); ?> </label>
2008-05-04 12:37:06 +02:00
</ fieldset ></ td >
2007-09-04 01:32:58 +02:00
</ tr >
2017-08-14 22:13:43 +02:00
2014-01-24 20:06:15 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " default_role " >< ? php _e ( 'New User Default Role' ); ?> </label></th>
2008-05-04 12:37:06 +02:00
< td >
2017-12-01 00:11:00 +01:00
< select name = " default_role " id = " default_role " >< ? php wp_dropdown_roles ( get_option ( 'default_role' ) ); ?> </select>
2007-09-04 01:32:58 +02:00
</ td >
</ tr >
2017-08-14 22:13:43 +02:00
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
}
2017-01-12 05:28:40 +01:00
2017-12-01 00:11:00 +01:00
$languages = get_available_languages ();
2017-01-12 05:28:40 +01:00
$translations = wp_get_available_translations ();
2020-04-05 05:02:11 +02:00
if ( ! is_multisite () && defined ( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG && ! in_array ( WPLANG , $languages , true ) ) {
2017-01-12 05:28:40 +01:00
$languages [] = WPLANG ;
}
if ( ! empty ( $languages ) || ! empty ( $translations ) ) {
?>
< tr >
2019-05-24 22:43:52 +02:00
< th scope = " row " >< label for = " WPLANG " >< ? php _e ( 'Site Language' ); ?> <span class="dashicons dashicons-translation" aria-hidden="true"></span></label></th>
2017-01-12 05:28:40 +01:00
< td >
< ? php
$locale = get_locale ();
2020-04-05 05:02:11 +02:00
if ( ! in_array ( $locale , $languages , true ) ) {
2017-01-12 05:28:40 +01:00
$locale = '' ;
}
2017-12-01 00:11:00 +01:00
wp_dropdown_languages (
array (
'name' => 'WPLANG' ,
'id' => 'WPLANG' ,
'selected' => $locale ,
'languages' => $languages ,
'translations' => $translations ,
2018-01-24 23:42:30 +01:00
'show_available_translations' => current_user_can ( 'install_languages' ) && wp_can_install_language_pack (),
2017-12-01 00:11:00 +01:00
)
);
2017-01-12 05:28:40 +01:00
// Add note about deprecated WPLANG constant.
2020-02-09 17:55:09 +01:00
if ( defined ( 'WPLANG' ) && ( '' !== WPLANG ) && WPLANG !== $locale ) {
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
_deprecated_argument (
'define()' ,
'4.0.0' ,
/* translators: 1: WPLANG, 2: wp-config.php */
sprintf ( __ ( 'The %1$s constant in your %2$s file is no longer needed.' ), 'WPLANG' , 'wp-config.php' )
);
2017-01-12 05:28:40 +01:00
}
?>
</ td >
</ tr >
< ? php
}
?>
2007-09-04 01:32:58 +02:00
< tr >
2009-03-18 03:43:45 +01:00
< ? php
2017-12-01 00:11:00 +01:00
$current_offset = get_option ( 'gmt_offset' );
$tzstring = get_option ( 'timezone_string' );
2009-12-23 15:16:36 +01:00
$check_zone_info = true ;
2011-12-14 00:45:31 +01:00
// Remove old Etc mappings. Fallback to gmt_offset.
2017-12-01 00:11:00 +01:00
if ( false !== strpos ( $tzstring , 'Etc/GMT' ) ) {
2009-12-23 15:16:36 +01:00
$tzstring = '' ;
2017-12-01 00:11:00 +01:00
}
2009-12-23 15:16:36 +01:00
2020-01-29 01:45:18 +01:00
if ( empty ( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists.
2009-12-23 15:16:36 +01:00
$check_zone_info = false ;
2017-12-01 00:11:00 +01:00
if ( 0 == $current_offset ) {
2009-12-23 15:16:36 +01:00
$tzstring = 'UTC+0' ;
2017-12-01 00:11:00 +01:00
} elseif ( $current_offset < 0 ) {
2009-12-23 15:16:36 +01:00
$tzstring = 'UTC' . $current_offset ;
2017-12-01 00:11:00 +01:00
} else {
2009-12-23 15:16:36 +01:00
$tzstring = 'UTC+' . $current_offset ;
2017-12-01 00:11:00 +01:00
}
2009-03-10 17:14:50 +01:00
}
2009-12-23 15:16:36 +01:00
2009-03-10 01:50:00 +01:00
?>
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " timezone_string " >< ? php _e ( 'Timezone' ); ?> </label></th>
2009-03-10 01:50:00 +01:00
< td >
2015-04-03 03:55:40 +02:00
< select id = " timezone_string " name = " timezone_string " aria - describedby = " timezone-description " >
2016-11-01 10:16:31 +01:00
< ? php echo wp_timezone_choice ( $tzstring , get_user_locale () ); ?>
2009-03-10 01:50:00 +01:00
</ select >
2019-09-02 23:44:58 +02:00
< p class = " description " id = " timezone-description " >
< ? php
printf (
/* translators: %s: UTC abbreviation */
__ ( 'Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.' ),
'<abbr>UTC</abbr>'
);
?>
</ p >
2016-01-11 23:54:28 +01:00
< p class = " timezone-info " >
2017-12-01 00:11:00 +01:00
< span id = " utc-time " >
< ? php
printf (
2019-09-03 02:41:05 +02:00
/* translators: %s: UTC time. */
__ ( 'Universal time is %s.' ),
2016-09-01 20:34:28 +02:00
'<code>' . date_i18n ( $timezone_format , false , true ) . '</code>'
2015-09-18 20:24:24 +02:00
);
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
</ span >
2016-01-11 23:54:28 +01:00
< ? php if ( get_option ( 'timezone_string' ) || ! empty ( $current_offset ) ) : ?>
2017-12-01 00:11:00 +01:00
< span id = " local-time " >
< ? php
printf (
2019-09-03 02:41:05 +02:00
/* translators: %s: Local time. */
2017-12-01 00:11:00 +01:00
__ ( 'Local time is %s.' ),
2015-09-18 20:24:24 +02:00
'<code>' . date_i18n ( $timezone_format ) . '</code>'
);
2017-12-01 00:11:00 +01:00
?>
</ span >
2009-04-06 18:16:39 +02:00
< ? php endif ; ?>
2016-01-11 23:54:28 +01:00
</ p >
2016-02-19 17:09:26 +01:00
< ? php if ( $check_zone_info && $tzstring ) : ?>
2016-01-11 23:54:28 +01:00
< p class = " timezone-info " >
2009-04-06 18:16:39 +02:00
< span >
2009-03-10 17:14:50 +01:00
< ? php
2019-06-20 16:11:53 +02:00
$now = new DateTime ( 'now' , new DateTimeZone ( $tzstring ) );
$dst = ( bool ) $now -> format ( 'I' );
if ( $dst ) {
2017-12-01 00:11:00 +01:00
_e ( 'This timezone is currently in daylight saving time.' );
} else {
_e ( 'This timezone is currently in standard time.' );
}
2009-03-10 17:14:50 +01:00
?>
< br />
< ? php
Date/Time: Minor tweak to support deprecated timezones on General Settings screen.
Underneath the timezone selector on the General Settings screen, a small snippet of info about the selected time zone is displayed.
This information would be missing if the timezone is set to a deprecated timezone value, even though PHP is perfectly capable of generating that information, including for deprecated timezones.
By passing the `DateTimeZone::ALL_WITH_BC` constant as the `$timezoneGroup` parameter to the PHP native `timezone_identifiers_list()` function, a timezone name list is retrieved containing both current and deprecated timezone names, preventing the condition from failing when the current timezone is a deprecated one.
See the extensive write-up about this in ticket #56468.
Also see: [https://www.php.net/manual/en/datetimezone.listidentifiers.php PHP Manual: timezone_identifiers_list()].
Note: As this is an admin/output page, no pre-existing tests are available.
Follow-up to [54207], [54217], [54227], [54229], [54230], [54232], [54233].
Props jrf, costdev, marcyoast.
See #56468.
Built from https://develop.svn.wordpress.org/trunk@54237
git-svn-id: http://core.svn.wordpress.org/trunk@53796 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 03:39:10 +02:00
if ( in_array ( $tzstring , timezone_identifiers_list ( DateTimeZone :: ALL_WITH_BC ), true ) ) {
2020-01-16 01:28:06 +01:00
$transitions = timezone_transitions_get ( timezone_open ( $tzstring ), time () );
2009-03-18 03:43:45 +01:00
2020-01-16 01:28:06 +01:00
// 0 index is the state at current time, 1 index is the next transition, if any.
if ( ! empty ( $transitions [ 1 ] ) ) {
2009-03-25 17:55:28 +01:00
echo ' ' ;
2020-01-16 01:28:06 +01:00
$message = $transitions [ 1 ][ 'isdst' ] ?
2019-09-03 02:41:05 +02:00
/* translators: %s: Date and time. */
2017-12-01 00:11:00 +01:00
__ ( 'Daylight saving time begins on: %s.' ) :
2019-09-03 02:41:05 +02:00
/* translators: %s: Date and time. */
2015-10-30 01:52:26 +01:00
__ ( 'Standard time begins on: %s.' );
2017-12-01 00:11:00 +01:00
printf (
$message ,
2020-01-16 01:28:06 +01:00
'<code>' . wp_date ( __ ( 'F j, Y' ) . ' ' . __ ( 'g:i a' ), $transitions [ 1 ][ 'ts' ] ) . '</code>'
2015-10-30 01:52:26 +01:00
);
2009-03-10 17:14:50 +01:00
} else {
2015-10-30 01:52:26 +01:00
_e ( 'This timezone does not observe daylight saving time.' );
2009-03-10 17:14:50 +01:00
}
}
?>
</ span >
2016-01-11 23:54:28 +01:00
</ p >
2016-02-19 17:09:26 +01:00
< ? php endif ; ?>
2009-03-10 01:50:00 +01:00
</ td >
2005-08-07 21:23:41 +02:00
</ tr >
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< ? php _e ( 'Date Format' ); ?> </th>
2008-10-13 20:32:16 +02:00
< td >
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
< fieldset >< legend class = " screen-reader-text " >< span >
< ? php
/* translators: Hidden accessibility text. */
_e ( 'Date Format' );
?>
</ span ></ legend >
2008-10-13 20:32:16 +02:00
< ? php
2013-10-25 00:53:57 +02:00
/**
2017-12-01 00:11:00 +01:00
* Filters the default date formats .
*
* @ since 2.7 . 0
* @ since 4.0 . 0 Added ISO date standard YYYY - MM - DD format .
*
2018-03-25 20:10:32 +02:00
* @ param string [] $default_date_formats Array of default date formats .
2017-12-01 00:11:00 +01:00
*/
2014-06-26 16:29:17 +02:00
$date_formats = array_unique ( apply_filters ( 'date_formats' , array ( __ ( 'F j, Y' ), 'Y-m-d' , 'm/d/Y' , 'd/m/Y' ) ) );
2008-10-13 20:32:16 +02:00
2010-03-06 10:49:11 +01:00
$custom = true ;
2008-10-13 20:32:16 +02:00
2017-12-01 00:11:00 +01:00
foreach ( $date_formats as $format ) {
echo " \t <label><input type='radio' name='date_format' value=' " . esc_attr ( $format ) . " ' " ;
2020-01-29 01:45:18 +01:00
if ( get_option ( 'date_format' ) === $format ) { // checked() uses "==" rather than "===".
2017-12-01 00:11:00 +01:00
echo " checked='checked' " ;
$custom = false ;
2008-10-13 20:32:16 +02:00
}
2017-12-01 00:11:00 +01:00
echo ' /> <span class="date-time-text format-i18n">' . date_i18n ( $format ) . '</span><code>' . esc_html ( $format ) . " </code></label><br /> \n " ;
}
2008-10-13 20:32:16 +02:00
2016-01-11 23:54:28 +01:00
echo '<label><input type="radio" name="date_format" id="date_format_custom_radio" value="\c\u\s\t\o\m"' ;
2009-02-27 23:15:14 +01:00
checked ( $custom );
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
echo '/> <span class="date-time-text date-time-custom-text">' . __ ( 'Custom:' ) . '<span class="screen-reader-text"> ' .
/* translators: Hidden accessibility text. */
__ ( 'enter a custom date format in the following field' ) .
'</span></span></label>' .
'<label for="date_format_custom" class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__ ( 'Custom date format:' ) .
'</label>' .
2017-05-23 19:58:43 +02:00
'<input type="text" name="date_format_custom" id="date_format_custom" value="' . esc_attr ( get_option ( 'date_format' ) ) . '" class="small-text" />' .
2017-10-13 20:39:48 +02:00
'<br />' .
'<p><strong>' . __ ( 'Preview:' ) . '</strong> <span class="example">' . date_i18n ( get_option ( 'date_format' ) ) . '</span>' .
" <span class='spinner'></span> \n " . '</p>' ;
2008-10-13 20:32:16 +02:00
?>
</ fieldset >
</ td >
2005-08-07 21:23:41 +02:00
</ tr >
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< ? php _e ( 'Time Format' ); ?> </th>
2008-10-13 20:32:16 +02:00
< td >
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
< fieldset >< legend class = " screen-reader-text " >< span >
< ? php
/* translators: Hidden accessibility text. */
_e ( 'Time Format' );
?>
</ span ></ legend >
2008-10-13 20:32:16 +02:00
< ? php
2013-10-25 00:53:57 +02:00
/**
2017-12-01 00:11:00 +01:00
* Filters the default time formats .
*
* @ since 2.7 . 0
*
2018-03-25 20:10:32 +02:00
* @ param string [] $default_time_formats Array of default time formats .
2017-12-01 00:11:00 +01:00
*/
2013-10-25 00:53:57 +02:00
$time_formats = array_unique ( apply_filters ( 'time_formats' , array ( __ ( 'g:i a' ), 'g:i A' , 'H:i' ) ) );
2008-10-13 20:32:16 +02:00
2010-03-06 10:49:11 +01:00
$custom = true ;
2008-10-13 20:32:16 +02:00
2017-12-01 00:11:00 +01:00
foreach ( $time_formats as $format ) {
echo " \t <label><input type='radio' name='time_format' value=' " . esc_attr ( $format ) . " ' " ;
2020-01-29 01:45:18 +01:00
if ( get_option ( 'time_format' ) === $format ) { // checked() uses "==" rather than "===".
2017-12-01 00:11:00 +01:00
echo " checked='checked' " ;
$custom = false ;
2008-10-13 20:32:16 +02:00
}
2017-12-01 00:11:00 +01:00
echo ' /> <span class="date-time-text format-i18n">' . date_i18n ( $format ) . '</span><code>' . esc_html ( $format ) . " </code></label><br /> \n " ;
}
2008-10-13 20:32:16 +02:00
2016-01-11 23:54:28 +01:00
echo '<label><input type="radio" name="time_format" id="time_format_custom_radio" value="\c\u\s\t\o\m"' ;
2009-02-27 23:15:14 +01:00
checked ( $custom );
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
echo '/> <span class="date-time-text date-time-custom-text">' . __ ( 'Custom:' ) . '<span class="screen-reader-text"> ' .
/* translators: Hidden accessibility text. */
__ ( 'enter a custom time format in the following field' ) .
'</span></span></label>' .
'<label for="time_format_custom" class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__ ( 'Custom time format:' ) .
'</label>' .
2017-05-23 19:58:43 +02:00
'<input type="text" name="time_format_custom" id="time_format_custom" value="' . esc_attr ( get_option ( 'time_format' ) ) . '" class="small-text" />' .
2017-10-13 20:39:48 +02:00
'<br />' .
'<p><strong>' . __ ( 'Preview:' ) . '</strong> <span class="example">' . date_i18n ( get_option ( 'time_format' ) ) . '</span>' .
" <span class='spinner'></span> \n " . '</p>' ;
2014-05-27 16:50:14 +02:00
2023-02-23 12:06:19 +01:00
echo " \t <p class='date-time-doc'> " . __ ( '<a href="https://wordpress.org/documentation/article/customize-date-and-time-format/">Documentation on date and time formatting</a>.' ) . " </p> \n " ;
2008-10-13 20:32:16 +02:00
?>
</ fieldset >
</ td >
2005-11-11 03:19:49 +01:00
</ tr >
2015-11-18 21:30:25 +01:00
< tr >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " start_of_week " >< ? php _e ( 'Week Starts On' ); ?> </label></th>
2015-11-18 21:30:25 +01:00
< td >< select name = " start_of_week " id = " start_of_week " >
< ? php
/**
2019-08-04 03:46:55 +02:00
* @ global WP_Locale $wp_locale WordPress date and time locale object .
2015-11-18 21:30:25 +01:00
*/
global $wp_locale ;
2015-01-10 06:57:22 +01:00
2017-12-01 00:11:00 +01:00
for ( $day_index = 0 ; $day_index <= 6 ; $day_index ++ ) :
$selected = ( get_option ( 'start_of_week' ) == $day_index ) ? 'selected="selected"' : '' ;
echo " \n \t <option value=' " . esc_attr ( $day_index ) . " ' $selected > " . $wp_locale -> get_weekday ( $day_index ) . '</option>' ;
2015-11-18 21:30:25 +01:00
endfor ;
?>
</ select ></ td >
</ tr >
2017-12-01 00:11:00 +01:00
< ? php do_settings_fields ( 'general' , 'default' ); ?>
2004-02-13 10:59:47 +01:00
</ table >
2006-01-10 06:16:17 +01:00
2017-12-01 00:11:00 +01:00
< ? php do_settings_sections ( 'general' ); ?>
2008-09-10 00:31:22 +02:00
2010-10-14 21:58:06 +02:00
< ? php submit_button (); ?>
2006-01-10 06:16:17 +01:00
</ form >
2007-09-04 01:32:58 +02:00
</ div >
2006-01-10 06:16:17 +01:00
2020-02-06 07:33:11 +01:00
< ? php require_once ABSPATH . 'wp-admin/admin-footer.php' ; ?>