2011-09-22 01:20:26 +02:00
< ? php
/**
* About This Version administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2011-09-22 01:20:26 +02:00
2021-03-02 20:50:04 +01:00
wp_enqueue_script ( 'wp-components' );
wp_enqueue_style ( 'wp-components' );
2018-07-24 17:04:25 +02:00
/* translators: Page title of the About WordPress page in the admin. */
$title = _x ( 'About' , 'page title' );
2015-08-14 00:11:35 +02:00
2016-08-31 07:49:37 +02:00
list ( $display_version ) = explode ( '-' , get_bloginfo ( 'version' ) );
2015-04-22 08:04:29 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2015-07-28 23:23:25 +02:00
?>
2019-10-29 21:10:04 +01:00
< div class = " wrap about__container " >
2019-10-22 21:19:07 +02:00
2019-10-15 22:42:03 +02:00
< div class = " about__header " >
Help/About: WordPress 5.6 About Page.
This change introduces the new About page for WordPress 5.6.
Props elmastudio, ryelle, melchoyce, karmatosed, webcommsat, marybaum, meher, OGlekler, lmurillom, vimes1984, sabrinazeidan, nalininonstopnewsuk, afshanadiya, michelleames, bmcdede, yvettesonneveld, sarahricker, isabel_brison, helen, hellofromtonya, poena, chanthaboune, cbringmann, joedolson, sabernhardt, garrett-eclipse, audrasjb, marks99.
See #51415.
Built from https://develop.svn.wordpress.org/trunk@49640
git-svn-id: http://core.svn.wordpress.org/trunk@49378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-17 22:34:04 +01:00
< div class = " about__header-image " >
2021-02-23 19:41:05 +01:00
< img alt = " <?php _e( 'Code is Poetry' ); ?> " src = " images/about-badge.svg " />
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
</ div >
2021-02-23 19:41:05 +01:00
< div class = " about__header-title " >
< p >
< ? php _e ( 'WordPress' ); ?>
< ? php echo $display_version ; ?>
</ p >
</ div >
Help/About: WordPress 5.6 About Page.
This change introduces the new About page for WordPress 5.6.
Props elmastudio, ryelle, melchoyce, karmatosed, webcommsat, marybaum, meher, OGlekler, lmurillom, vimes1984, sabrinazeidan, nalininonstopnewsuk, afshanadiya, michelleames, bmcdede, yvettesonneveld, sarahricker, isabel_brison, helen, hellofromtonya, poena, chanthaboune, cbringmann, joedolson, sabernhardt, garrett-eclipse, audrasjb, marks99.
See #51415.
Built from https://develop.svn.wordpress.org/trunk@49640
git-svn-id: http://core.svn.wordpress.org/trunk@49378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-17 22:34:04 +01:00
2021-02-23 19:41:05 +01:00
< div class = " about__header-text " >
< ? php _e ( 'Jazz up your stories in an editor that’ s cleaner, crisper, and does more to get out of your way.' ); ?>
2017-05-27 17:04:43 +02:00
</ div >
2019-10-15 22:42:03 +02:00
< nav class = " about__header-navigation nav-tab-wrapper wp-clearfix " aria - label = " <?php esc_attr_e( 'Secondary menu' ); ?> " >
< a href = " about.php " class = " nav-tab nav-tab-active " aria - current = " page " >< ? php _e ( 'What’s New' ); ?> </a>
< a href = " credits.php " class = " nav-tab " >< ? php _e ( 'Credits' ); ?> </a>
< a href = " freedoms.php " class = " nav-tab " >< ? php _e ( 'Freedoms' ); ?> </a>
< a href = " privacy.php " class = " nav-tab " >< ? php _e ( 'Privacy' ); ?> </a>
</ nav >
</ div >
2021-02-23 19:41:05 +01:00
< div class = " about__section is-feature has-subtle-background-color " >
< div class = " column " >
< h1 class = " is-smaller-heading " >
< ? php
printf (
/* translators: %s: The current WordPress version number. */
__ ( 'Step into WordPress %s.' ),
$display_version
);
?>
</ h1 >
Help/About: WordPress 5.6 About Page.
This change introduces the new About page for WordPress 5.6.
Props elmastudio, ryelle, melchoyce, karmatosed, webcommsat, marybaum, meher, OGlekler, lmurillom, vimes1984, sabrinazeidan, nalininonstopnewsuk, afshanadiya, michelleames, bmcdede, yvettesonneveld, sarahricker, isabel_brison, helen, hellofromtonya, poena, chanthaboune, cbringmann, joedolson, sabernhardt, garrett-eclipse, audrasjb, marks99.
See #51415.
Built from https://develop.svn.wordpress.org/trunk@49640
git-svn-id: http://core.svn.wordpress.org/trunk@49378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-17 22:34:04 +01:00
< p >
< ? php
printf (
2021-02-23 19:41:05 +01:00
/* translators: %s: The current WordPress version number. */
2021-02-24 16:51:06 +01:00
__ ( 'With this new version, the editor cleans up the colors and helps you work in a few places you couldn’ t before—at least, not without getting into code or hiring a pro. The controls you use most, like changing type sizes, are in more places—right where you need them. And layout changes that should be simple, like full-height images, get even simpler to make.' ),
2021-02-23 19:41:05 +01:00
$display_version
Help/About: WordPress 5.6 About Page.
This change introduces the new About page for WordPress 5.6.
Props elmastudio, ryelle, melchoyce, karmatosed, webcommsat, marybaum, meher, OGlekler, lmurillom, vimes1984, sabrinazeidan, nalininonstopnewsuk, afshanadiya, michelleames, bmcdede, yvettesonneveld, sarahricker, isabel_brison, helen, hellofromtonya, poena, chanthaboune, cbringmann, joedolson, sabernhardt, garrett-eclipse, audrasjb, marks99.
See #51415.
Built from https://develop.svn.wordpress.org/trunk@49640
git-svn-id: http://core.svn.wordpress.org/trunk@49378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-17 22:34:04 +01:00
);
?>
</ p >
2019-10-15 22:42:03 +02:00
</ div >
</ div >
Help/About: WordPress 5.0 About Page.
The About page describes all the great changes in WordPress 5.0.
Highlights:
- Warn users of Gutenberg plugin of its deactivation upon 5.0 upgrade.
- Added illustrations to the Four Freedoms page.
- Include a link to wporg user’s plugin favorites as a way to display only the classic plugin as a suggestion for install.
- Detail the Classic Editor plugin and the support timeline.
Props pixelverbieger, ocean90, karmatosed, pento, boemedia, lonelyvegan, sami.keijonen, TimothyBlynJacobs, xkon, afercia, laurelfulford, joostdevalk, ipstenu, matveb, joen, tinkerbelly, chanthaboune, kjellr, alexislloyd, melchoyce, mcsf, courtney0burton, Otto42, cathibosco, tobifjellner, helen, audrasjb, antpb, jjj, elrae, desrosj, azaozz, joemcgill, skithund, gziolo.
Merges [43913], [43921-43922], [43937-43938], [43946-43947], [43952-43953], [43967-43969] into trunk.
Fixes #45178.
Built from https://develop.svn.wordpress.org/trunk@44264
git-svn-id: http://core.svn.wordpress.org/trunk@44094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 17:36:59 +01:00
2021-02-23 19:41:05 +01:00
< hr class = " is-large " />
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
Help/About: WordPress 5.6 About Page.
This change introduces the new About page for WordPress 5.6.
Props elmastudio, ryelle, melchoyce, karmatosed, webcommsat, marybaum, meher, OGlekler, lmurillom, vimes1984, sabrinazeidan, nalininonstopnewsuk, afshanadiya, michelleames, bmcdede, yvettesonneveld, sarahricker, isabel_brison, helen, hellofromtonya, poena, chanthaboune, cbringmann, joedolson, sabernhardt, garrett-eclipse, audrasjb, marks99.
See #51415.
Built from https://develop.svn.wordpress.org/trunk@49640
git-svn-id: http://core.svn.wordpress.org/trunk@49378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-17 22:34:04 +01:00
< div class = " about__section has-2-columns " >
2021-02-23 19:41:05 +01:00
< h2 class = " is-section-header is-smaller-heading " >
< ? php _e ( 'Now the editor is easier to use' ); ?>
</ h2 >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
< div class = " column " >
2021-02-23 19:41:05 +01:00
< p >
< ? php
_e ( '<strong>Font-size adjustment in more places:</strong> now, font-size controls are right where you need them in the List and Code blocks. No more trekking to another screen to make that single change!' );
?>
</ p >
< p >
< ? php
_e ( '<strong>Reusable blocks:</strong> several enhancements make reusable blocks more stable and easier to use. And now they save automatically with the post when you click the Update button.' );
?>
</ p >
< p >
< ? php
_e ( '<strong>Inserter drag-and-drop:</strong> drag blocks and block patterns from the inserter right into your post.' );
?>
</ p >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
</ div >
2021-02-23 19:41:05 +01:00
< div class = " column about__image " >
< video controls >
2021-03-02 20:50:04 +01:00
< source src = " https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4 " type = " video/mp4 " />
< source src = " https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4 " type = " video/webm " />
2021-02-23 19:41:05 +01:00
</ video >
2019-10-15 22:42:03 +02:00
</ div >
</ div >
2021-02-23 19:41:05 +01:00
< div class = " about__section has-2-columns " >
< h2 class = " is-section-header is-smaller-heading " >
< ? php _e ( 'You can do more without writing custom code' ); ?>
</ h2 >
< div class = " column " >
2020-11-18 16:51:04 +01:00
< p >
< ? php
2021-02-23 19:41:05 +01:00
_e ( '<strong>Full-height alignment:</strong> have you ever wanted to make a block, like the Cover block, fill the whole window? Now you can.' );
?>
</ p >
< p >
< ? php
_e ( '<strong>Buttons block:</strong> now you can align the content in buttons vertically. And you can set the width of a button to a preset percentage.' );
?>
</ p >
< p >
< ? php
2021-03-02 20:50:04 +01:00
_e ( '<strong>Social Icons block:</strong> now you can change the size of the icons.' );
2020-11-18 16:51:04 +01:00
?>
</ p >
Help/About: WordPress 5.6 About Page.
This change introduces the new About page for WordPress 5.6.
Props elmastudio, ryelle, melchoyce, karmatosed, webcommsat, marybaum, meher, OGlekler, lmurillom, vimes1984, sabrinazeidan, nalininonstopnewsuk, afshanadiya, michelleames, bmcdede, yvettesonneveld, sarahricker, isabel_brison, helen, hellofromtonya, poena, chanthaboune, cbringmann, joedolson, sabernhardt, garrett-eclipse, audrasjb, marks99.
See #51415.
Built from https://develop.svn.wordpress.org/trunk@49640
git-svn-id: http://core.svn.wordpress.org/trunk@49378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-17 22:34:04 +01:00
</ div >
2021-02-23 19:41:05 +01:00
< div class = " column about__image " >
2021-03-02 20:50:04 +01:00
< img src = " https://s.w.org/images/core/5.7/about-57-cover.jpg " alt = " " />
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
</ div >
2020-03-20 18:13:10 +01:00
</ div >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
< hr />
2020-03-20 18:13:10 +01:00
2021-02-23 19:41:05 +01:00
< div class = " about__section has-subtle-background-color " >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
< div class = " column " >
2021-02-23 19:41:05 +01:00
< h2 class = " is-smaller-heading " >< ? php _e ( 'A Simpler Default Color Palette' ); ?> </h2>
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
</ div >
2021-02-23 19:41:05 +01:00
</ div >
< div class = " about__section has-subtle-background-color " >
2021-03-02 20:50:04 +01:00
< figure class = " column about__image " id = " about-image-comparison " >
< div class = " about__image-comparison no-js " >
< img src = " https://s.w.org/images/core/5.7/about-57-color-old.png " alt = " <?php esc_attr_e( 'Dashboard with old color scheme.' ); ?> " />
2021-02-23 19:41:05 +01:00
< div class = " about__image-comparison-resize " >
2021-03-02 20:50:04 +01:00
< img src = " https://s.w.org/images/core/5.7/about-57-color-new.png " alt = " <?php esc_attr_e( 'Dashboard with new color scheme.' ); ?> " />
2021-02-23 19:41:05 +01:00
</ div >
</ div >
2021-03-02 20:50:04 +01:00
< figcaption >< ? php _e ( 'Above, the Dashboard before and after the color update in 5.7.' ); ?> </figcaption>
</ figure >
2021-02-23 19:41:05 +01:00
</ div >
< div class = " about__section has-2-columns has-subtle-background-color " >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
< div class = " column " >
2020-11-27 18:10:07 +01:00
< p >
< ? php
printf (
2021-02-23 19:41:05 +01:00
/* translators: %s: WCAG information link. */
__ ( 'This new streamlined color palette collapses all the colors that used to be in the WordPress source code down to seven core colors and a range of 56 shades that meet the <a href="%s">WCAG 2.0 AA recommended contrast ratio</a> against white or black.' ),
'https://www.w3.org/WAI/WCAG2AAA-Conformance'
2020-11-27 18:10:07 +01:00
);
?>
</ p >
2021-02-23 19:41:05 +01:00
< p >
< ? php
_e ( 'The colors are perceptually uniform from light to dark in each range, which means they start at white and get darker by the same amount with each step.' );
?>
</ p >
2020-03-20 18:13:10 +01:00
</ div >
Help/About: Polish the About page for 5.2.
- The About page now uses a CSS grid to layout its design, making the page’s structure more obvious and hopefully easier for contributors in the future.
- Removes some code that is no longer used (such as videos, mejs elements, etc.).
- Update images.
- Unnecessary HTML is removed from a string on the page. This was a regression.
- Only users with the correct capability should be instructed to check their site status.
- Fixes the placement of commas.
Reviewed by melchoyce, afercia, jeremyfelt, and desrosj.
Props ryelle, melchoyce, cathibosco1, man4toman, SergeyBiryukov, afercia, ramiy, kjellr, tellyworth, earnjam, andreamiddleton, marybaum.
See #46901.
Built from https://develop.svn.wordpress.org/trunk@45278
git-svn-id: http://core.svn.wordpress.org/trunk@45087 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-05-02 17:44:53 +02:00
< div class = " column " >
2019-02-19 02:57:52 +01:00
< p >
2019-10-22 21:19:07 +02:00
< ? php
2021-02-23 19:41:05 +01:00
_e ( 'Half the range has a 4.5 or higher contrast ratio against black, and the other half maintains the same contrast against white.' );
2019-04-26 02:57:53 +02:00
?>
2019-02-19 02:57:52 +01:00
</ p >
2019-10-15 22:42:03 +02:00
< p >
2019-10-22 21:19:07 +02:00
< ? php
2019-10-15 22:42:03 +02:00
printf (
2021-02-23 19:41:05 +01:00
/* translators: %s: Color palette dev note link. */
__ ( 'Find the new palette in the default WordPress Dashboard color scheme, and use it when you’ re building themes, plugins, or any other components. For all the details, <a href="%s">check out the Color Palette dev note</a>.' ),
'https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7'
2019-10-15 22:42:03 +02:00
);
?>
</ p >
2020-03-03 22:22:07 +01:00
</ div >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
</ div >
2021-02-23 19:41:05 +01:00
< div class = " about__section has-subtle-background-color " >
< div class = " column about__image " >
< picture >
< source media = " (max-width: 600px) " srcset = " images/about-color-palette-vert.svg " />
< img alt = " " src = " images/about-color-palette.svg " />
</ picture >
</ div >
</ div >
< hr />
< div class = " about__section has-2-columns " >
< div class = " column " >
< h3 >< ? php _e ( 'From HTTP to HTTPS in a single click' ); ?> </h3>
< p >< ? php _e ( 'Starting now, switching a site from HTTP to HTTPS is a one-click move. WordPress will automatically update database URLs when you make the switch. No more hunting and guessing!' ); ?> </p>
< h3 >< ? php _e ( 'New Robots API' ); ?> </h3>
< p >
< ? php
2021-03-02 20:50:04 +01:00
_e ( 'The new Robots API lets you include the filter directives in the robots meta tag, and the API includes the <code>max-image-preview: large</code> directive by default. That means search engines can show bigger image previews, which can boost your traffic (unless the site is marked <em>not-public</em>).' );
2021-02-23 19:41:05 +01:00
?>
</ p >
</ div >
< div class = " column " >
< h3 >< ? php _e ( 'Ongoing cleanup after update to jQuery 3.5.1' ); ?> </h3>
< p >< ? php _e ( 'For years jQuery helped make things move on the screen in ways the basic tools couldn’ t—but that keeps changing, and so does jQuery.' ); ?> </p>
2021-03-02 20:50:04 +01:00
< p >< ? php _e ( 'In 5.7, jQuery gets more focused and less intrusive, with fewer messages in the console.' ); ?> </p>
2021-02-23 19:41:05 +01:00
< h3 >< ? php _e ( 'Lazy-load your iframes' ); ?> </h3>
2021-03-02 22:38:03 +01:00
< p >< ? php _e ( 'Now it’ s simple to let iframes lazy-load. By default, WordPress will add a <code>loading="lazy"</code> attribute to iframe tags when both width and height are specified.' ); ?> </p>
2021-02-23 19:41:05 +01:00
</ div >
</ div >
2020-03-20 18:13:10 +01:00
< hr class = " is-small " />
< div class = " about__section " >
< div class = " column " >
Help/About: WordPress 5.5 About Page.
Speed. Search. Security.
This is the start of the WordPress 5.5 about page.
Fixes #50416.
Props ryelle, marybaum, estelaris, yvettesonneveld, michelebutcher-jones, metalandcoffee, melchoyce, marktimemedia, abhanonstopnewsuk, elmastudio, davidbaumwald, audrasjb, afercia, cbringmann, andreamiddleton, desrosj, earnjam, SergeyBiryukov, whyisjake, elrae.
Built from https://develop.svn.wordpress.org/trunk@48675
git-svn-id: http://core.svn.wordpress.org/trunk@48437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 19:46:04 +02:00
< h3 >< ? php _e ( 'Check the Field Guide for more!' ); ?> </h3>
2020-03-20 18:13:10 +01:00
< p >
< ? php
printf (
2021-02-23 19:41:05 +01:00
/* translators: %s: WordPress 5.7 Field Guide link. */
__ ( 'Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of. <a href="%s">WordPress 5.7 Field Guide.</a>' ),
'https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide'
2020-03-20 18:13:10 +01:00
);
?>
</ p >
</ div >
2020-03-03 22:22:07 +01:00
</ div >
2015-12-04 13:24:26 +01:00
< hr />
About Page: First pass for 4.6 with strings (not yet translatable) and images (not CDN).
Props macmanx, jorbin, hugobaeta, DrewAPicture, peterwilsoncc, iamfriendly, rahulsprajapati, vishalkakadiya, petya, celloexpressions, westonruter, mikeschroder, zetaraffix, mapk, boonebgorges, adamsilverstein, jeremyfelt, rosso99, karmatosed, swissspidy, michael-arestad, ramiy, ocean90.
See #37246.
Built from https://develop.svn.wordpress.org/trunk@38183
git-svn-id: http://core.svn.wordpress.org/trunk@38124 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-08-03 21:54:48 +02:00
< div class = " return-to-dashboard " >
< ? php if ( current_user_can ( 'update_core' ) && isset ( $_GET [ 'updated' ] ) ) : ?>
< a href = " <?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?> " >
2020-11-09 11:53:10 +01:00
< ? php is_multisite () ? _e ( 'Go to Updates' ) : _e ( 'Go to Dashboard → Updates' ); ?>
About Page: First pass for 4.6 with strings (not yet translatable) and images (not CDN).
Props macmanx, jorbin, hugobaeta, DrewAPicture, peterwilsoncc, iamfriendly, rahulsprajapati, vishalkakadiya, petya, celloexpressions, westonruter, mikeschroder, zetaraffix, mapk, boonebgorges, adamsilverstein, jeremyfelt, rosso99, karmatosed, swissspidy, michael-arestad, ramiy, ocean90.
See #37246.
Built from https://develop.svn.wordpress.org/trunk@38183
git-svn-id: http://core.svn.wordpress.org/trunk@38124 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-08-03 21:54:48 +02:00
</ a > |
< ? php endif ; ?>
< a href = " <?php echo esc_url( self_admin_url() ); ?> " >< ? php is_blog_admin () ? _e ( 'Go to Dashboard → Home' ) : _e ( 'Go to Dashboard' ); ?> </a>
2013-12-06 08:50:12 +01:00
</ div >
2015-05-28 17:39:24 +02:00
</ div >
2011-09-22 01:20:26 +02:00
2021-03-02 20:50:04 +01:00
< ? php require_once ABSPATH . 'wp-admin/admin-footer.php' ; ?>
< script >
wp . domReady ( function () {
var createElement = wp . element . createElement ;
var Fragment = wp . element . Fragment ;
var render = wp . element . render ;
var useState = wp . element . useState ;
var ResizableBox = wp . components . ResizableBox ;
var container = document . getElementById ( 'about-image-comparison' );
var images = container ? container . querySelectorAll ( 'img' ) : [];
if ( ! images . length ) {
// Something's wrong, return early.
return ;
}
var beforeImage = images . item ( 0 );
var afterImage = images . item ( 1 );
var caption = container . querySelector ( 'figcaption' ) . innerText ;
function ImageComparison ( props ) {
var stateHelper = useState ( props . width );
var width = stateHelper [ 0 ];
var setWidth = stateHelper [ 1 ];
return createElement (
'div' ,
{
className : 'about__image-comparison'
},
createElement ( 'img' , { src : beforeImage . src , alt : beforeImage . alt } ),
createElement (
ResizableBox ,
{
size : {
width : width ,
height : props . height
},
onResizeStop : function ( event , direction , elt , delta ) {
setWidth ( parseInt ( width + delta . width , 10 ) );
},
showHandle : true ,
enable : {
top : false ,
right : ! wp . i18n . isRTL (),
bottom : false ,
left : wp . i18n . isRTL (),
},
className : 'about__image-comparison-resize'
},
createElement (
'div' ,
{
style : { width : '100%' , height : '100%' , overflow : 'hidden' }
},
createElement ( 'img' , { src : afterImage . src , alt : afterImage . alt } )
)
)
);
}
render (
createElement (
Fragment ,
{},
createElement (
ImageComparison ,
{
width : beforeImage . clientWidth / 2 ,
height : beforeImage . clientHeight
}
),
createElement ( 'figcaption' , {}, caption )
),
container
);
} );
</ script >
< ? php
2011-12-02 00:13:56 +01:00
// These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
return ;
2015-11-11 20:29:25 +01:00
__ ( 'Maintenance Release' );
__ ( 'Maintenance Releases' );
2011-12-02 00:13:56 +01:00
2015-11-11 20:29:25 +01:00
__ ( 'Security Release' );
__ ( 'Security Releases' );
__ ( 'Maintenance and Security Release' );
__ ( 'Maintenance and Security Releases' );
2019-09-03 02:41:05 +02:00
/* translators: %s: WordPress version number. */
2015-11-11 20:29:25 +01:00
__ ( '<strong>Version %s</strong> addressed one security issue.' );
2019-09-03 02:41:05 +02:00
/* translators: %s: WordPress version number. */
2015-11-11 20:29:25 +01:00
__ ( '<strong>Version %s</strong> addressed some security issues.' );
2011-12-02 00:13:56 +01:00
2019-09-03 02:41:05 +02:00
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
2017-12-01 00:11:00 +01:00
_n_noop (
'<strong>Version %1$s</strong> addressed %2$s bug.' ,
'<strong>Version %1$s</strong> addressed %2$s bugs.'
);
2011-12-02 00:13:56 +01:00
2019-09-03 02:41:05 +02:00
/* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */
2017-12-01 00:11:00 +01:00
_n_noop (
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.' ,
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.'
);
2011-12-02 00:13:56 +01:00
2019-09-03 02:41:05 +02:00
/* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
2017-12-01 00:11:00 +01:00
_n_noop (
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.' ,
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.'
);
2011-12-02 00:13:56 +01:00
2019-09-03 02:41:05 +02:00
/* translators: %s: Documentation URL. */
2011-12-02 18:17:08 +01:00
__ ( 'For more information, see <a href="%s">the release notes</a>.' );