Making WordPress.org


Ignore:
Timestamp:
06/09/2018 03:56:16 AM (8 years ago)
Author:
obenland
Message:

Support: Update site titles and add description.

See #3539.

File:
1 edited

Legend:

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

    r7136 r7288  
    137137 */
    138138function wporg_get_global_header() {
    139     $GLOBALS['pagetitle'] = wp_title( '«', false, 'right' ) . ' ' . get_bloginfo( 'name' );
     139    $GLOBALS['pagetitle'] = wp_get_document_title();
    140140    require WPORGPATH . 'header.php';
    141141}
     
    149149    require WPORGPATH . 'footer.php';
    150150}
     151
     152
     153/**
     154 * Append an optimized site name.
     155 *
     156 * @param array $title {
     157 *     The document title parts.
     158 *
     159 *     @type string $title   Title of the viewed page.
     160 *     @type string $page    Optional. Page number if paginated.
     161 *     @type string $tagline Optional. Site description when on home page.
     162 *     @type string $site    Optional. Site title when not on home page.
     163 * }
     164 * @return array Filtered title parts.
     165 */
     166function wporg_support_document_title( $title ) {
     167    if ( is_front_page() ) {
     168        $title['title']   = _x( 'Support', 'Site title', 'wporg-forums' );
     169        $title['tagline'] = __( 'WordPress.org', 'wporg-forums' );
     170    } else {
     171        $title['site'] = __( 'WordPress.org', 'wporg-forums' );
     172    }
     173
     174    return $title;
     175}
     176add_filter( 'document_title_parts', 'wporg_support_document_title' );
     177
     178/**
     179 * Set the separator for the document title.
     180 *
     181 * @return string Document title separator.
     182 */
     183function wporg_support_document_title_separator() {
     184    return '|';
     185}
     186add_filter( 'document_title_separator', 'wporg_support_document_title_separator' );
    151187
    152188/**
Note: See TracChangeset for help on using the changeset viewer.