Changeset 7289 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
- Timestamp:
- 06/09/2018 04:12:50 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
r7288 r7289 137 137 */ 138 138 function wporg_get_global_header() { 139 $GLOBALS['pagetitle'] = wp_ get_document_title();139 $GLOBALS['pagetitle'] = wp_title( '|', false, 'right' ) . ' ' . __( 'WordPress.org', 'wporg-forums' ); 140 140 require WPORGPATH . 'header.php'; 141 141 } … … 150 150 } 151 151 152 153 152 /** 154 153 * Append an optimized site name. 155 154 * 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 * } 155 * @param array $title Parts of the page title. 164 156 * @return array Filtered title parts. 165 157 */ 166 158 function wporg_support_document_title( $title ) { 167 159 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' ); 160 $title[1] = _x( 'Support', 'Site title', 'wporg-forums' ); 172 161 } 173 162 174 163 return $title; 175 164 } 176 add_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 */ 183 function wporg_support_document_title_separator() { 184 return '|'; 185 } 186 add_filter( 'document_title_separator', 'wporg_support_document_title_separator' ); 165 add_filter( 'wp_title_parts', 'wporg_support_document_title' ); 187 166 188 167 /**
Note: See TracChangeset
for help on using the changeset viewer.