Making WordPress.org


Ignore:
Timestamp:
10/21/2019 02:56:47 AM (6 years ago)
Author:
dd32
Message:

Theme Directory: Use the translated page titles in the header.

See #4680.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/page-commercial.php

    r5738 r9211  
    55 * @package wporg-themes
    66 */
     7
     8// Use the translated post title.
     9add_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 );
    716
    817$theme_shops = wporg_themes_query_api( 'get_commercial_shops' )->shops;
Note: See TracChangeset for help on using the changeset viewer.