Making WordPress.org


Ignore:
Timestamp:
12/05/2019 12:13:00 AM (5 years ago)
Author:
coffee2code
Message:

WordPress.org Main Theme: Add tentative release dates up through v6.0 to the roadmap.

Props chanthaboune.
Fixes #4847.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-roadmap.php

    r9280 r9310  
    120120                                <a href="https://core.trac.wordpress.org/tickets/major">(Trac)</a>
    121121                            </th>
    122                             <td>2020</td>
     122                            <td><?php echo date_i18n( 'F Y', strtotime( 'Mar 2020' ) ); ?></td>
     123                        </tr>
     124                        <tr>
     125                            <th>5.5</th>
     126                            <td><?php echo date_i18n( 'F Y', strtotime( 'Aug 2020' ) ); ?></td>
     127                        </tr>
     128                        <tr>
     129                            <th>5.6</th>
     130                            <td><?php echo date_i18n( 'F Y', strtotime( 'Dec 2020' ) ); ?></td>
     131                        </tr>
     132                        <tr>
     133                            <th>5.7</th>
     134                            <td><?php echo date_i18n( 'F Y', strtotime( 'Mar 2021' ) ); ?></td>
     135                        </tr>
     136                        <tr>
     137                            <th>5.8</th>
     138                            <td><?php echo date_i18n( 'F Y', strtotime( 'Jun 2021' ) ); ?></td>
     139                        </tr>
     140                        <tr>
     141                            <th>5.9</th>
     142                            <td><?php echo date_i18n( 'F Y', strtotime( 'Sep 2021' ) ); ?></td>
     143                        </tr>
     144                        <tr>
     145                            <th>6.0</th>
     146                            <td><?php echo date_i18n( 'F Y', strtotime( 'Dec 2021' ) ); ?></td>
    123147                        </tr>
    124148                        </tbody>
    125149                    </table>
     150
     151                    <p><?php
     152                        printf(
     153                            /* translators: %s: Link to Make WordPress Core blog post */
     154                            wp_kses_post( __( 'For more information on the planned release schedule, please read the Make WordPress Core post about the <a href="%s">tentative release calendar for 2020-2021</a>.', 'wporg' ) ),
     155                            'https://make.wordpress.org/core/2019/11/21/tentative-release-calendar-2020-2021/'
     156                        );
     157                        ?>
     158                    </p>
    126159
    127160                    <p><?php esc_html_e( 'The month prior to a release new features are frozen and the focus is entirely on ensuring the quality of the release by eliminating bugs and profiling the code for any performance issues.', 'wporg' ); ?></p>
Note: See TracChangeset for help on using the changeset viewer.