Ticket #5142: #5142.patch
File #5142.patch, 1.2 KB (added by , 3 years ago) |
---|
-
front-page.php
284 284 <?php else : ?> 285 285 <ul id="notable-users" class="notable-users"> 286 286 <?php 287 $user_links = [287 $user_links = array( 288 288 'whitehouse' => 'https://wordpress.org/showcase/the-white-house/', 289 289 'rolling-stone' => 'https://wordpress.org/showcase/rolling-stone/', 290 290 'bbc-america' => 'https://wordpress.org/showcase/bbc-america/', … … 292 292 'pioneer-woman' => 'https://wordpress.org/showcase/the-pioneer-woman', 293 293 'playstation' => 'https://wordpress.org/showcase/playstationblog/', 294 294 'blondie' => 'https://wordpress.org/showcase/blondie/', 295 ];295 ); 296 296 297 297 foreach ( array_rand( $user_links, 3 ) as $slug ) : 298 298 printf( … … 305 305 </ul> 306 306 <?php endif; ?> 307 307 308 <a class="showcase-link" href="https://wordpress.org/showcase/"><?php _e( '… and hundreds more', 'wporg' ); ?></a>308 <a class="showcase-link" href="https://wordpress.org/showcase/"><?php _e( 'and hundreds more…', 'wporg' ); ?></a> 309 309 </div> 310 310 </div> 311 311