Changeset 9211
- Timestamp:
- 10/21/2019 02:56:47 AM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/page-commercial.php
r5738 r9211 5 5 * @package wporg-themes 6 6 */ 7 8 // Use the translated post title. 9 add_filter( 'single_post_title', function( $title ) { 10 if ( 'Commercially Supported GPL Themes' === $title ) { 11 $title = __( 'Commercially Supported GPL Themes', 'wporg-themes' ); 12 } 13 14 return $title; 15 }, 1 ); 7 16 8 17 $theme_shops = wporg_themes_query_api( 'get_commercial_shops' )->shops; -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/page-getting-started.php
r6320 r9211 5 5 * @package wporg-themes 6 6 */ 7 8 // Use the translated post title. 9 add_filter( 'single_post_title', function( $title ) { 10 if ( 'Getting Started' === $title ) { 11 $title = __( 'Getting Started', 'wporg-themes' ); 12 } 13 14 return $title; 15 }, 1 ); 7 16 8 17 get_header(); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/page-upload.php
r8467 r9211 14 14 } 15 15 } 16 17 // Use the translated post title. 18 add_filter( 'single_post_title', function( $title ) { 19 if ( 'Submit Your Theme or Theme Update to the Directory' === $title ) { 20 $title = __( 'Submit Your Theme or Theme Update to the Directory', 'wporg-themes' ); 21 } 22 23 return $title; 24 }, 1 ); 16 25 17 26 get_header();
Note: See TracChangeset
for help on using the changeset viewer.