diff --git a/wp-admin/comment.php b/wp-admin/comment.php index ee7a514be4..145cd7a5ea 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -207,9 +207,9 @@ switch ( $action ) { $submitted = sprintf( /* translators: 1: Comment date, 2: Comment time. */ __( '%1$s at %2$s' ), - /* translators: Comment date format. See https://secure.php.net/date */ + /* translators: Comment date format. See https://www.php.net/date */ get_comment_date( __( 'Y/m/d' ), $comment ), - /* translators: Comment time format. See https://secure.php.net/date */ + /* translators: Comment time format. See https://www.php.net/date */ get_comment_date( __( 'g:i a' ), $comment ) ); if ( 'approved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_post_ID ) ) { diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php index c19551751e..e7127fbcb2 100644 --- a/wp-admin/edit-form-advanced.php +++ b/wp-admin/edit-form-advanced.php @@ -169,9 +169,9 @@ if ( $viewable ) { $scheduled_date = sprintf( /* translators: Publish box date string. 1: Date, 2: Time. */ __( '%1$s at %2$s' ), - /* translators: Publish box date format, see https://secure.php.net/date */ + /* translators: Publish box date format, see https://www.php.net/date */ date_i18n( _x( 'M j, Y', 'publish box date format' ), strtotime( $post->post_date ) ), - /* translators: Publish box time format, see https://secure.php.net/date */ + /* translators: Publish box time format, see https://www.php.net/date */ date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $post->post_date ) ) ); diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index a40aace4ef..aaed1f9fa4 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -106,9 +106,9 @@ if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ $submitted = sprintf( /* translators: 1: Comment date, 2: Comment time. */ __( '%1$s at %2$s' ), - /* translators: Publish box date format, see https://secure.php.net/date */ + /* translators: Publish box date format, see https://www.php.net/date */ date_i18n( _x( 'M j, Y', 'publish box date format' ), strtotime( $comment->comment_date ) ), - /* translators: Publish box time format, see https://secure.php.net/date */ + /* translators: Publish box time format, see https://www.php.net/date */ date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $comment->comment_date ) ) ); ?> diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index d1700d9fa0..495693c313 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -2197,7 +2197,7 @@ function wp_ajax_find_posts() { if ( '0000-00-00 00:00:00' == $post->post_date ) { $time = ''; } else { - /* translators: Date format in table columns, see https://secure.php.net/date */ + /* translators: Date format in table columns, see https://www.php.net/date */ $time = mysql2date( __( 'Y/m/d' ), $post->post_date ); } diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index 2facc37fa2..a11eefc873 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -872,9 +872,9 @@ class WP_Comments_List_Table extends WP_List_Table { $submitted = sprintf( /* translators: 1: Comment date, 2: Comment time. */ __( '%1$s at %2$s' ), - /* translators: Comment date format. See https://secure.php.net/date */ + /* translators: Comment date format. See https://www.php.net/date */ get_comment_date( __( 'Y/m/d' ), $comment ), - /* translators: Comment time format. See https://secure.php.net/date */ + /* translators: Comment time format. See https://www.php.net/date */ get_comment_date( __( 'g:i a' ), $comment ) ); diff --git a/wp-admin/includes/class-wp-community-events.php b/wp-admin/includes/class-wp-community-events.php index 8b1e32e549..776d72f2f2 100644 --- a/wp-admin/includes/class-wp-community-events.php +++ b/wp-admin/includes/class-wp-community-events.php @@ -375,7 +375,7 @@ class WP_Community_Events { * so that users can tell at a glance if the event is on a day they * are available, without having to open the link. */ - /* translators: Date format for upcoming events on the dashboard. Include the day of the week. See https://secure.php.net/date */ + /* translators: Date format for upcoming events on the dashboard. Include the day of the week. See https://www.php.net/date */ $response_body['events'][ $key ]['formatted_date'] = date_i18n( __( 'l, M j, Y' ), $timestamp ); $response_body['events'][ $key ]['formatted_time'] = date_i18n( get_option( 'time_format' ), $timestamp ); } diff --git a/wp-admin/includes/class-wp-filesystem-base.php b/wp-admin/includes/class-wp-filesystem-base.php index a171e4a219..fe8f4b27b6 100644 --- a/wp-admin/includes/class-wp-filesystem-base.php +++ b/wp-admin/includes/class-wp-filesystem-base.php @@ -319,7 +319,7 @@ class WP_Filesystem_Base { * * From the PHP documentation page for fileperms(). * - * @link https://secure.php.net/manual/en/function.fileperms.php + * @link https://www.php.net/manual/en/function.fileperms.php * * @since 2.5.0 * @@ -387,7 +387,7 @@ class WP_Filesystem_Base { * Converts '-rw-r--r--' to 0644 * From "info at rvgate dot nl"'s comment on the PHP documentation for chmod() * - * @link https://secure.php.net/manual/en/function.chmod.php#49614 + * @link https://www.php.net/manual/en/function.chmod.php#49614 * * @since 2.5.0 * diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 5aa3fe4dab..6ecc49f8f1 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -950,10 +950,10 @@ function wp_dashboard_recent_posts( $args ) { } elseif ( gmdate( 'Y-m-d', $time ) == $tomorrow ) { $relative = __( 'Tomorrow' ); } elseif ( gmdate( 'Y', $time ) !== $year ) { - /* translators: Date and time format for recent posts on the dashboard, from a different calendar year, see https://secure.php.net/date */ + /* translators: Date and time format for recent posts on the dashboard, from a different calendar year, see https://www.php.net/date */ $relative = date_i18n( __( 'M jS Y' ), $time ); } else { - /* translators: Date and time format for recent posts on the dashboard, see https://secure.php.net/date */ + /* translators: Date and time format for recent posts on the dashboard, see https://www.php.net/date */ $relative = date_i18n( __( 'M jS' ), $time ); } diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index ae246f8b76..94d7cbbd59 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/wp-admin/includes/meta-boxes.php @@ -194,11 +194,11 @@ function post_submit_meta_box( $post, $args = array() ) { ID ) { @@ -382,11 +382,11 @@ function attachment_submit_meta_box( $post ) { post_date ) ), - /* translators: Publish box time format, see https://secure.php.net/date */ + /* translators: Publish box time format, see https://www.php.net/date */ date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $post->post_date ) ) ); /* translators: Attachment information. %s: Date the attachment was uploaded. */ diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index 6b0c311658..8903a280ed 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -1195,7 +1195,7 @@ function heartbeat_autosave( $response, $data ) { 'message' => __( 'Error while saving.' ), ); } else { - /* translators: Draft saved date format, see https://secure.php.net/date */ + /* translators: Draft saved date format, see https://www.php.net/date */ $draft_saved_date_format = __( 'g:i:s a' ); $response['wp_autosave'] = array( 'success' => true, diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index a2e8216457..a566829eaf 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -394,7 +394,7 @@ function populate_options( array $options = array() ) { $gmt_offset = 0; /* * translators: default GMT offset or timezone string. Must be either a valid offset (-12 to 14) - * or a valid timezone string (America/New_York). See https://secure.php.net/manual/en/timezones.php + * or a valid timezone string (America/New_York). See https://www.php.net/manual/en/timezones.php * for all timezone strings supported by PHP. */ $offset_or_tz = _x( '0', 'default GMT offset or timezone string' ); // phpcs:ignore WordPress.WP.I18n.NoEmptyStrings @@ -429,11 +429,11 @@ function populate_options( array $options = array() ) { 'default_ping_status' => 'open', 'default_pingback_flag' => 1, 'posts_per_page' => 10, - /* translators: Default date format, see https://secure.php.net/date */ + /* translators: Default date format, see https://www.php.net/date */ 'date_format' => __( 'F j, Y' ), - /* translators: Default time format, see https://secure.php.net/date */ + /* translators: Default time format, see https://www.php.net/date */ 'time_format' => __( 'g:i a' ), - /* translators: Links last updated date format, see https://secure.php.net/date */ + /* translators: Links last updated date format, see https://www.php.net/date */ 'links_updated_date_format' => __( 'F j, Y g:i a' ), 'comment_moderation' => 0, 'moderation_notify' => 1, diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index cbde314eef..13aa9c8114 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -18,7 +18,7 @@ if ( ! current_user_can( 'manage_options' ) ) { $title = __( 'General Settings' ); $parent_file = 'options-general.php'; -/* translators: Date and time format for exact current time, mainly about timezones, see https://secure.php.net/date */ +/* translators: Date and time format for exact current time, mainly about timezones, see https://www.php.net/date */ $timezone_format = _x( 'Y-m-d H:i:s', 'timezone date format' ); add_action( 'admin_head', 'options_general_add_js' ); diff --git a/wp-content/themes/twentytwenty/footer.php b/wp-content/themes/twentytwenty/footer.php index ef9de5fbd9..cadabad9d2 100644 --- a/wp-content/themes/twentytwenty/footer.php +++ b/wp-content/themes/twentytwenty/footer.php @@ -21,7 +21,7 @@