Index: themes/pub/wporg-apps/functions.php
===================================================================
--- themes/pub/wporg-apps/functions.php	(revision 2005)
+++ themes/pub/wporg-apps/functions.php	(working copy)
@@ -56,6 +56,8 @@
 		'comment-form',
 		'gallery',
 	) );
+
+		add_theme_support('title-tag');
 }
 endif; // wpmobileapps_setup
 add_action( 'after_setup_theme', 'wpmobileapps_setup' );
@@ -197,6 +199,15 @@
 		return;
 	}
 
+	/**
+	 * Returns the title seprator.
+	 */
+	function wpmobileapps_title_separator(){
+		return '|';
+	}
+	add_filter('document_title_separator','wpmobileapps_title_separator');
+
+
 	if ( class_exists( 'Jetpack_Likes' ) ) {
 		remove_filter( 'post_flair', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 );
 	}
@@ -276,4 +287,3 @@
 		update_post_meta( $post_id, 'features_animation', $_POST['features_animation'] );
 }
 add_action( 'save_post', 'save_wpma_meta_information', 1, 2 );
-
Index: themes/pub/wporg-apps/header.php
===================================================================
--- themes/pub/wporg-apps/header.php	(revision 2005)
+++ themes/pub/wporg-apps/header.php	(working copy)
@@ -11,7 +11,6 @@
 <head>
 <meta charset="<?php bloginfo( 'charset' ); ?>">
 <meta name="viewport" content="width=device-width, initial-scale=1">
-<title><?php wp_title( '|', true, 'right' ); ?></title>
 <link rel="profile" href="http://gmpg.org/xfn/11">
 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
 
