Changeset 51413
- Timestamp:
- 07/13/2021 12:11:42 AM (23 months ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r51359 r51413 10 10 require_once __DIR__ . '/admin.php'; 11 11 12 wp_enqueue_script( 'wp-components' );13 wp_enqueue_style( 'wp-components' );14 15 12 /* translators: Page title of the About WordPress page in the admin. */ 16 13 $title = _x( 'About', 'page title' ); … … 45 42 46 43 <div class="about__section"> 47 <h2 class="aligncenter has-accent-color">44 <h2 class="aligncenter"> 48 45 <?php _e( 'Three Essential Powerhouses' ); ?> 49 46 </h2> … … 52 49 <div class="about__section has-2-columns is-wider-left"> 53 50 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 54 <img src="https:// make.wordpress.org/core/files/2021/07/about-58-widgets-blocks.png" alt="" />51 <img src="https://s.w.org/images/core/5.8/about-widgets-blocks.png" alt="" /> 55 52 </div> 56 53 <div class="column"> … … 78 75 </h3> 79 76 <p> 80 <?php 81 printf( 82 /* translators: %s: Query Loop dev note link. */ 83 __( 'The Query Loop Block makes it possible to display posts based on specified parameters; like a PHP loop without the code. Easily display posts from a specific category, to do things like create a portfolio or a page full of your favorite recipes. Think of it as a more complex and powerful Latest Posts Block! Plus, pattern suggestions make it easier than ever to create a list of posts with the design you want. For our theme authors, learn more about experimenting with this awesome tool in the <a href="%s">Query Loop Block dev note</a>.' ), 84 '#' 85 ); 86 ?> 87 </p> 88 </div> 89 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 90 <img src="https://make.wordpress.org/core/files/2021/07/about-58-patterns.png" alt="" /> 77 <?php _e( 'The Query Loop Block makes it possible to display posts based on specified parameters; like a PHP loop without the code. Easily display posts from a specific category, to do things like create a portfolio or a page full of your favorite recipes. Think of it as a more complex and powerful Latest Posts Block! Plus, pattern suggestions make it easier than ever to create a list of posts with the design you want.' ); ?> 78 </p> 79 </div> 80 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 81 <img src="https://s.w.org/images/core/5.8/about-query-loop.png" alt="" /> 91 82 </div> 92 83 </div> … … 96 87 <div class="about__section has-2-columns is-wider-left"> 97 88 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 98 <img src="https:// make.wordpress.org/core/files/2021/07/about-58-template.png" alt="" />89 <img src="https://s.w.org/images/core/5.8/about-template.png" alt="" /> 99 90 </div> 100 91 <div class="column"> … … 113 104 114 105 <div class="about__section"> 115 <h2 class="aligncenter has-accent-color">106 <h2 class="aligncenter"> 116 107 <?php _e( 'Three Workflow Helpers' ); ?> 117 108 </h2> … … 120 111 <div class="about__section has-2-columns is-wider-left"> 121 112 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 122 <img src="https:// make.wordpress.org/core/files/2021/07/about-58-list-view.png" alt="" />113 <img src="https://s.w.org/images/core/5.8/about-list-view.png" alt="" /> 123 114 </div> 124 115 <div class="column"> … … 148 139 </div> 149 140 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 150 <img src="https:// make.wordpress.org/core/files/2021/07/about-58-pattern-suggestions.png" alt="" />141 <img src="https://s.w.org/images/core/5.8/about-pattern-suggestions.png" alt="" /> 151 142 </div> 152 143 </div> … … 156 147 <div class="about__section has-2-columns is-wider-left"> 157 148 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 158 <img src="https:// make.wordpress.org/core/files/2021/07/about-58-duotone.png" alt="" />149 <img src="https://s.w.org/images/core/5.8/about-duotone.png" alt="" /> 159 150 </div> 160 151 <div class="column"> … … 173 164 174 165 <div class="about__section"> 175 <h2 class="aligncenter has-accent-color">166 <h2 class="aligncenter"> 176 167 <?php _e( 'For Developers to Explore' ); ?> 177 168 </h2> 178 169 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 179 <img src="https:// make.wordpress.org/core/files/2021/07/about-58-theme-json.png" alt="" />170 <img src="https://s.w.org/images/core/5.8/about-theme-json.png" alt="" /> 180 171 </div> 181 172 </div> -
trunk/src/wp-admin/credits.php
r51356 r51413 53 53 ?> 54 54 <br /> 55 <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress ' ); ?></a>.55 <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a> 56 56 </p> 57 57 … … 61 61 <?php _e( 'Want to see your name in lights on this page?' ); ?> 62 62 <br /> 63 <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress ' ); ?></a>.63 <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a> 64 64 </p> 65 65
Note: See TracChangeset
for help on using the changeset viewer.