Changeset 8530 for sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/camptix-tweaks/camptix-tweaks.php
- Timestamp:
- 03/26/2019 09:50:49 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/camptix-tweaks/camptix-tweaks.php
r8529 r8530 672 672 $sponsors = array( 'Jetpack', 'WooCommerce', 'Bluehost', 'GoDaddy', 'Liquid Web', 'GreenGeeks', 'DreamHost' ); 673 673 674 $sponsors = array_map( function( $string ) { 675 return "<strong>$string</strong>"; 676 }, $sponsors ); 674 $sponsors = array_map( 675 function ( $string ) { 676 return "<strong>$string</strong>"; 677 }, 678 $sponsors 679 ); 677 680 678 681 $last_sponsor = array_pop( $sponsors ); … … 690 693 691 694 $thank_you = sprintf( 692 /* translators: %1$s: list of sponsor names; %2$s: URL; */695 /* translators: %1$s: list of sponsor names; %2$s: URL; */ 693 696 __( 'Thank you to %1$s for <a href="%2$s">their support</a>!', 'wordcamporg' ), 694 697 $sponsors_string,
Note: See TracChangeset
for help on using the changeset viewer.