Changeset 7288 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
- Timestamp:
- 06/09/2018 03:56:16 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
r7136 r7288 137 137 */ 138 138 function wporg_get_global_header() { 139 $GLOBALS['pagetitle'] = wp_ title( '«', false, 'right' ) . ' ' . get_bloginfo( 'name');139 $GLOBALS['pagetitle'] = wp_get_document_title(); 140 140 require WPORGPATH . 'header.php'; 141 141 } … … 149 149 require WPORGPATH . 'footer.php'; 150 150 } 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 */ 166 function 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 } 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' ); 151 187 152 188 /**
Note: See TracChangeset
for help on using the changeset viewer.