Ticket #1353: 1353-mobileapps.diff
File 1353-mobileapps.diff, 1.4 KB (added by , 10 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 } 62 60 63 endif; // wpmobileapps_setup 61 64 add_action( 'after_setup_theme', 'wpmobileapps_setup' ); 62 65 … … 190 193 add_filter( 'excerpt_length', 'wpmobileapps_excerpt_length' ); 191 194 192 195 /** 196 * Returns the title seprator. 197 */ 198 function wpmobileapps_title_separator(){ 199 return '|'; 200 } 201 202 /** 193 203 * Remove Jetpack Likes on the grid page template. 194 204 */ 195 205 function wpmobileapps_remove_likes() { … … 276 286 update_post_meta( $post_id, 'features_animation', $_POST['features_animation'] ); 277 287 } 278 288 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