Changeset 2293
- Timestamp:
- 01/13/2016 05:49:26 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-apps/functions.php
r2097 r2293 204 204 205 205 /** 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 /**221 206 * Remove Jetpack Likes on the grid page template. 222 207 */
Note: See TracChangeset
for help on using the changeset viewer.