[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * About This Version administration panel. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** WordPress Administration Bootstrap */ 10 require_once __DIR__ . '/admin.php'; 11 12 // Used in the HTML title tag. 13 /* translators: Page title of the About WordPress page in the admin. */ 14 $title = _x( 'About', 'page title' ); 15 16 list( $display_version ) = explode( '-', wp_get_wp_version() ); 17 $display_major_version = '6.8'; 18 19 $release_notes_url = sprintf( 20 /* translators: %s: WordPress version number. */ 21 __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ), 22 '6-8' 23 ); 24 25 $field_guide_url = sprintf( 26 /* translators: %s: WordPress version number. */ 27 __( 'https://make.wordpress.org/core/wordpress-%s-field-guide/' ), 28 '6-8' 29 ); 30 31 require_once ABSPATH . 'wp-admin/admin-header.php'; 32 ?> 33 <div class="wrap about__container"> 34 35 <div class="about__header"> 36 <div class="about__header-title"> 37 <h1> 38 <?php 39 printf( 40 /* translators: %s: Version number. */ 41 __( 'WordPress %s' ), 42 $display_version 43 ); 44 ?> 45 </h1> 46 </div> 47 </div> 48 49 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 50 <a href="about.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'What’s New' ); ?></a> 51 <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> 52 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 53 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 54 <a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a> 55 </nav> 56 57 <div class="about__section has-1-column"> 58 <div class="column"> 59 <h2><?php _e( 'A release polished to a high sheen.' ); ?></h2> 60 <p class="is-subheading"><?php _e( 'WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.' ); ?></p> 61 <p><?php _e( 'The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.' ); ?></p> 62 <p><?php _e( 'Speculative loading speeds up navigation by preloading links before users navigate to them, while bcrypt hashing strengthens password security automatically.' ); ?></p> 63 <p><?php _e( 'Behind the scenes, database optimizations improve performance, and a new security warning system helps prevent vulnerabilities before they become a problem.' ); ?></p> 64 </div> 65 </div> 66 67 <div class="about__section has-2-columns"> 68 <div class="column is-vertically-aligned-center"> 69 <h3><?php _e( 'The Style Book gets a cleaner look—and a few new tricks' ); ?></h3> 70 <p> 71 <?php _e( 'The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.' ); ?> 72 </p> 73 <?php if ( ! wp_is_block_theme() ) : ?> 74 <p> 75 <?php 76 if ( current_user_can( 'edit_theme_options' ) && ( current_theme_supports( 'editor-styles' ) || wp_theme_has_theme_json() ) ) { 77 printf( 78 /* translators: %s is a direct link to the Style Book. */ 79 __( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find <a href="%s">the Style Book</a> under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.' ), 80 add_query_arg( 'p', '/stylebook', admin_url( '/site-editor.php' ) ) 81 ); 82 } else { 83 _e( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.' ); 84 } 85 ?> 86 </p> 87 <?php endif; ?> 88 </div> 89 <div class="column is-vertically-aligned-center"> 90 <div class="about__image"> 91 <img src="https://make.wordpress.org/core/files/2025/03/about-68-feature-01.png" alt="" height="436" width="436" /> 92 </div> 93 </div> 94 </div> 95 96 <div class="about__section has-2-columns"> 97 <div class="column is-vertically-aligned-center"> 98 <div class="about__image"> 99 <img src="https://make.wordpress.org/core/files/2025/03/about-68-feature-02.png" alt="" height="436" width="436" /> 100 </div> 101 </div> 102 <div class="column is-vertically-aligned-center"> 103 <h3><?php _e( 'Editor improvements' ); ?></h3> 104 <p><?php _e( 'Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.' ); ?></p> 105 </div> 106 </div> 107 108 <div class="about__section has-2-columns"> 109 <div class="column is-vertically-aligned-center"> 110 <h3><?php _e( 'Near-instant page loads, thanks to Speculative Loading' ); ?></h3> 111 <p><?php _e( 'In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.' ); ?></p> 112 </div> 113 <div class="column is-vertically-aligned-center"> 114 <div class="about__image"> 115 <img src="https://make.wordpress.org/core/files/2025/03/about-68-feature-03.png" alt="" height="436" width="436" /> 116 </div> 117 </div> 118 </div> 119 120 <div class="about__section has-2-columns"> 121 <div class="column is-vertically-aligned-center"> 122 <div class="about__image"> 123 <img src="https://make.wordpress.org/core/files/2025/03/about-68-feature-04.png" alt="" height="436" width="436" /> 124 </div> 125 </div> 126 <div class="column is-vertically-aligned-center"> 127 <h3><?php _e( 'Stronger password security with bcrypt' ); ?></h3> 128 <p><?php _e( 'Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.' ); ?></p> 129 </div> 130 </div> 131 132 <hr class="is-invisible is-large" /> 133 134 <div class="about__section has-2-columns"> 135 <div class="column"> 136 <div class="about__image"> 137 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> 138 <path fill="#1e1e1e" d="M24 13.84c-.752 0-1.397-.287-1.936-.86a2.902 2.902 0 0 1-.809-2.06c0-.8.27-1.487.809-2.06S23.248 8 24 8c.753 0 1.398.287 1.937.86.54.573.809 1.26.809 2.06s-.27 1.487-.809 2.06-1.184.86-1.937.86ZM19.976 40V18.68a69.562 69.562 0 0 1-4.945-.56 45.877 45.877 0 0 1-4.57-.92l.565-2.4a46.79 46.79 0 0 0 6.356 1.14c2.106.227 4.312.34 6.618.34 2.307 0 4.513-.113 6.62-.34a46.786 46.786 0 0 0 6.355-1.14l.564 2.4c-1.454.373-2.977.68-4.57.92a69.55 69.55 0 0 1-4.945.56V40h-2.256V29.6h-3.535V40h-2.257Z"/> 139 </svg> 140 </div> 141 <h3><?php _e( 'Accessibility improvements' ); ?></h3> 142 <p><?php _e( '100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.' ); ?></p> 143 </div> 144 <div class="column"> 145 <div class="about__image"> 146 <svg width="48" height="48" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> 147 <path fill="#1e1e1e" d="M18.1823 11.6392C18.1823 13.0804 17.0139 14.2487 15.5727 14.2487C14.3579 14.2487 13.335 13.4179 13.0453 12.2922L13.0377 12.2625L13.0278 12.2335L12.3985 10.377L12.3942 10.3785C11.8571 8.64997 10.246 7.39405 8.33961 7.39405C5.99509 7.39405 4.09448 9.29465 4.09448 11.6392C4.09448 13.9837 5.99509 15.8843 8.33961 15.8843C8.88499 15.8843 9.40822 15.781 9.88943 15.5923L9.29212 14.0697C8.99812 14.185 8.67729 14.2487 8.33961 14.2487C6.89838 14.2487 5.73003 13.0804 5.73003 11.6392C5.73003 10.1979 6.89838 9.02959 8.33961 9.02959C9.55444 9.02959 10.5773 9.86046 10.867 10.9862L10.8772 10.9836L11.4695 12.7311C11.9515 14.546 13.6048 15.8843 15.5727 15.8843C17.9172 15.8843 19.8178 13.9837 19.8178 11.6392C19.8178 9.29465 17.9172 7.39404 15.5727 7.39404C15.0287 7.39404 14.5066 7.4968 14.0264 7.6847L14.6223 9.20781C14.9158 9.093 15.2358 9.02959 15.5727 9.02959C17.0139 9.02959 18.1823 10.1979 18.1823 11.6392Z"></path> 148 </svg> 149 </div> 150 <h3><?php _e( 'Take a load off the database' ); ?></h3> 151 <p><?php _e( 'Work continues on optimizing cache key generation in the <code>WP_Query</code> class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.' ); ?></p> 152 </div> 153 </div> 154 155 <div class="about__section has-1-column"> 156 <div class="column"> 157 <div class="about__image"> 158 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> 159 <path fill="#1e1e1e" d="M32.455 17.72a1.592 1.592 0 0 1 .599 2.195l-7.637 12.99a1.653 1.653 0 0 1-2.235.589 1.592 1.592 0 0 1-.599-2.195l7.637-12.99a1.653 1.653 0 0 1 2.235-.589ZM13.774 23.21a1.653 1.653 0 0 0-2.236.589 1.592 1.592 0 0 0 .6 2.195l.944.536c.783.444 1.783.18 2.235-.588a1.592 1.592 0 0 0-.599-2.196l-.944-.535ZM16.432 17.72a1.653 1.653 0 0 1 2.236.588l.545.928a1.592 1.592 0 0 1-.599 2.196 1.653 1.653 0 0 1-2.235-.588l-.546-.928a1.592 1.592 0 0 1 .6-2.196ZM25.637 16.5c0-.888-.733-1.607-1.637-1.607s-1.636.72-1.636 1.607v1.071c0 .888.732 1.608 1.636 1.608.904 0 1.637-.72 1.637-1.608V16.5Z"/> 160 <path fill="#1e1e1e" fill-rule="evenodd" d="M4.91 27.75C4.91 17.395 13.455 9 24 9s19.091 8.395 19.091 18.75c0 3.909-1.22 7.542-3.305 10.548l-.488.702H8.702l-.488-.702A18.438 18.438 0 0 1 4.91 27.75ZM24 12.214c-8.736 0-15.818 6.956-15.818 15.536 0 2.943.832 5.692 2.277 8.036h27.082a15.25 15.25 0 0 0 2.277-8.036c0-8.58-7.082-15.536-15.818-15.536Z" clip-rule="evenodd"/> 161 </svg> 162 </div> 163 <h3><?php _e( 'Performance updates' ); ?></h3> 164 <p><?php _e( 'WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.' ); ?></p> 165 </div> 166 </div> 167 168 <hr class="is-invisible is-large" style="margin-bottom:calc(2 * var(--gap));" /> 169 170 <div class="about__section has-2-columns is-wider-left is-feature" style="background-color:var(--background);border-radius:var(--border-radius);"> 171 <h3 class="is-section-header"><?php _e( 'And much more' ); ?></h3> 172 <div class="column"> 173 <p> 174 <?php 175 printf( 176 /* translators: %s: Version number. */ 177 __( 'For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.' ), 178 $display_major_version 179 ); 180 ?> 181 </p> 182 </div> 183 <div class="column aligncenter"> 184 <div class="about__image"> 185 <a href="<?php echo esc_url( __( 'https://wordpress.org/download/releases/6-8/' ) ); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a> 186 </div> 187 </div> 188 </div> 189 190 <hr class="is-large" style="margin-top:calc(2 * var(--gap));" /> 191 192 <div class="about__section has-3-columns"> 193 <div class="column about__image is-vertically-aligned-top"> 194 <img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.8' ) ); ?>" alt="" height="280" width="280" /> 195 </div> 196 <div class="column is-vertically-aligned-center" style="grid-column-end:span 2"> 197 <h3> 198 <?php 199 printf( 200 /* translators: %s: Version number. */ 201 __( 'Learn more about WordPress %s' ), 202 $display_major_version 203 ); 204 ?> 205 </h3> 206 <p> 207 <?php 208 printf( 209 /* translators: 1: Learn WordPress link, 2: Workshops link. */ 210 __( '<a href="%1$s">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href="%2$s">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.' ), 211 'https://learn.wordpress.org/', 212 'https://learn.wordpress.org/online-workshops/' 213 ); 214 ?> 215 </p> 216 </div> 217 </div> 218 219 <div class="about__section has-2-columns"> 220 <div class="column"> 221 <div class="about__image"> 222 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> 223 <path fill="#1e1e1e" d="M32 15.5H16v3h16v-3ZM16 22h16v3H16v-3ZM28 28.5H16v3h12v-3Z"/> 224 <path fill="#1e1e1e" fill-rule="evenodd" d="M34 8H14a4 4 0 0 0-4 4v24a4 4 0 0 0 4 4h20a4 4 0 0 0 4-4V12a4 4 0 0 0-4-4Zm-20 3h20a1 1 0 0 1 1 1v24a1 1 0 0 1-1 1H14a1 1 0 0 1-1-1V12a1 1 0 0 1 1-1Z" clip-rule="evenodd"/> 225 </svg> 226 </div> 227 <h4 style="margin-top: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);"> 228 <a href="<?php echo esc_url( $release_notes_url ); ?>"> 229 <?php 230 printf( 231 /* translators: %s: WordPress version number. */ 232 __( 'WordPress %s Release Notes' ), 233 $display_major_version 234 ); 235 ?> 236 </a> 237 </h4> 238 <p> 239 <?php 240 printf( 241 /* translators: %s: WordPress version number. */ 242 __( 'Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.' ), 243 $display_major_version 244 ); 245 ?> 246 </p> 247 </div> 248 <div class="column"> 249 <div class="about__image"> 250 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> 251 <path fill="#1e1e1e" stroke="#fff" stroke-width=".5" d="M26.5 24.25h13.75v11.5h-14v8h-3.5v-8H12.604L8.09 31.237a1.75 1.75 0 0 1 0-2.474l4.513-4.513H22.75v-4.5h-14V8.25h14v-4h3.5v4h10.146l4.513 4.513a1.75 1.75 0 0 1 0 2.474l-4.513 4.513H26.25v4.5h.25ZM12.25 16v.25h22.704l.073-.073 1.293-1.293a1.25 1.25 0 0 0 0-1.768l-1.293-1.293-.073-.073H12.25V16Zm1.723 16.177.073.073H36.75v-4.5H14.046l-.073.073-1.293 1.293a1.25 1.25 0 0 0 0 1.768l1.293 1.293Z"/> 252 </svg> 253 </div> 254 <h4 style="margin-top: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);"> 255 <a href="<?php echo esc_url( $field_guide_url ); ?>"> 256 <?php 257 printf( 258 /* translators: %s: WordPress version number. */ 259 __( 'WordPress %s Field Guide' ), 260 $display_major_version 261 ); 262 ?> 263 </a> 264 </h4> 265 <p> 266 <?php 267 printf( 268 /* translators: %s: WordPress version number. */ 269 __( 'Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.' ), 270 $display_major_version 271 ); 272 ?> 273 </p> 274 </div> 275 </div> 276 277 <hr class="is-large" /> 278 279 <div class="return-to-dashboard"> 280 <?php 281 if ( isset( $_GET['updated'] ) && current_user_can( 'update_core' ) ) { 282 printf( 283 '<a href="%1$s">%2$s</a> | ', 284 esc_url( self_admin_url( 'update-core.php' ) ), 285 is_multisite() ? __( 'Go to Updates' ) : __( 'Go to Dashboard → Updates' ) 286 ); 287 } 288 289 printf( 290 '<a href="%1$s">%2$s</a>', 291 esc_url( self_admin_url() ), 292 is_blog_admin() ? __( 'Go to Dashboard → Home' ) : __( 'Go to Dashboard' ) 293 ); 294 ?> 295 </div> 296 </div> 297 298 <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> 299 300 <?php 301 302 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings. 303 return; 304 305 __( 'Maintenance Release' ); 306 __( 'Maintenance Releases' ); 307 308 __( 'Security Release' ); 309 __( 'Security Releases' ); 310 311 __( 'Maintenance and Security Release' ); 312 __( 'Maintenance and Security Releases' ); 313 314 /* translators: %s: WordPress version number. */ 315 __( '<strong>Version %s</strong> addressed one security issue.' ); 316 /* translators: %s: WordPress version number. */ 317 __( '<strong>Version %s</strong> addressed some security issues.' ); 318 319 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 320 _n_noop( 321 '<strong>Version %1$s</strong> addressed %2$s bug.', 322 '<strong>Version %1$s</strong> addressed %2$s bugs.' 323 ); 324 325 /* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */ 326 _n_noop( 327 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', 328 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' 329 ); 330 331 /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ 332 _n_noop( 333 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 334 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' 335 ); 336 337 /* translators: %s: Documentation URL. */ 338 __( 'For more information, see <a href="%s">the release notes</a>.' ); 339 340 /* translators: 1: WordPress version number, 2: Link to update WordPress */ 341 __( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' ); 342 343 /* translators: 1: WordPress version number, 2: Link to update WordPress */ 344 __( 'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' ); 345 346 /* translators: %s: The major version of WordPress for this branch. */ 347 __( 'This is the final release of WordPress %s' ); 348 349 /* translators: The localized WordPress download URL. */ 350 __( 'https://wordpress.org/download/' );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Apr 3 08:20:01 2025 | Cross-referenced by PHPXref |