Ticket #1353: 1353-mobileapps_2.diff
File 1353-mobileapps_2.diff, 1.4 KB (added by , 8 years ago) |
---|
-
themes/pub/wporg-apps/functions.php
56 56 'comment-form', 57 57 'gallery', 58 58 ) ); 59 60 add_theme_support('title-tag'); 59 61 } 60 62 endif; // wpmobileapps_setup 61 63 add_action( 'after_setup_theme', 'wpmobileapps_setup' ); … … 197 199 return; 198 200 } 199 201 202 /** 203 * Returns the title seprator. 204 */ 205 function wpmobileapps_title_separator(){ 206 return '|'; 207 } 208 add_filter('document_title_separator','wpmobileapps_title_separator'); 209 210 200 211 if ( class_exists( 'Jetpack_Likes' ) ) { 201 212 remove_filter( 'post_flair', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 ); 202 213 } … … 276 287 update_post_meta( $post_id, 'features_animation', $_POST['features_animation'] ); 277 288 } 278 289 add_action( 'save_post', 'save_wpma_meta_information', 1, 2 ); 279 -
themes/pub/wporg-apps/header.php
11 11 <head> 12 12 <meta charset="<?php bloginfo( 'charset' ); ?>"> 13 13 <meta name="viewport" content="width=device-width, initial-scale=1"> 14 <title><?php wp_title( '|', true, 'right' ); ?></title>15 14 <link rel="profile" href="http://gmpg.org/xfn/11"> 16 15 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> 17 16