diff --git a/wp-content/themes/twentytwelve/functions.php b/wp-content/themes/twentytwelve/functions.php index d678aa7316..7c7c238ec7 100644 --- a/wp-content/themes/twentytwelve/functions.php +++ b/wp-content/themes/twentytwelve/functions.php @@ -141,6 +141,9 @@ add_action( 'wp_enqueue_scripts', 'twentytwelve_scripts_styles' ); function twentytwelve_wp_title( $title, $sep ) { global $paged, $page; + if ( is_feed() ) + return $title; + // Add the blog name. $title .= get_bloginfo( 'name' );