Making WordPress.org

Changeset 2293


Ignore:
Timestamp:
01/13/2016 05:49:26 PM (9 years ago)
Author:
Otto42
Message:

Put the front page title back on apps.w.org. Fixes #1518. Ref: #1353

File:
1 edited

Legend:

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

    r2097 r2293  
    204204
    205205/**
    206  * Omit page name from front page title.
    207  *
    208  * @param array $parts The document title parts.
    209  * @return array The document title parts.
    210  */
    211 function wpmobileapps_remove_frontpage_name_from_title( $parts ) {
    212     if ( is_front_page() ) {
    213         $parts['title'] = '';
    214     }
    215 
    216     return $parts; 
    217 }
    218 add_filter( 'document_title_parts', 'wpmobileapps_remove_frontpage_name_from_title' );
    219 
    220 /**
    221206 * Remove Jetpack Likes on the grid page template.
    222207 */
Note: See TracChangeset for help on using the changeset viewer.