![]() |
War Tapes is: |
Why Bother?
If you’ve heard The Bravery, you’ll recognize their obvious influences on the War Tapes, from lead singer Neil’s distinctive voice to the same musical influences. Of course, there’s the fact that they toured with The Bravery before to add to those similarities. So why bother listening to these guys? They’re not The Bravery, for starters. With the presence of a female vocalist and their sardonic lyrics, I can guarantee you’ll be interested in their Cure-like sound. Of course, as with most bands, time and money could help them improve their sound, but I don’t think you should ignore these guys as just another one of the multitude of post-punk bands out there. They need to release an album before I can officially judge them, but I have some hope for these guys.
Current Discography:
War Tapes [EP] (2008)
- download: Dreaming of You
- download: Always Falling
Upcoming Tour Dates:
Sep 21 2008 – The Fillmore w/ Tiger Army (San Francisco, California)
Sep 24 2008 – EP RELEASE PARTY @ Club Moscow (18+) (Hollywood)
Oct 15 2008 – Club A.D.D. @ Nicholby’s (Ventura, California)
Oct 23 2008 – Octoberflame 2008 @ The Grove with Tiger Army & Vnv Nation (Anaheim, California)
Disclosure: War Tapes were brought to my attention by two emails from Sarathan Records. Please see my review policy for more.
Tags: war tapes
![War Tapes [EP] by the War Tapes](http://www.awaitstheday.sunira.net/tunereview/wp-content/uploads/2008/09/51q8s30e4ls-300x260.jpg)





Hey, thanks for the War Tapes support, glad you like them! You should check out their recently released EP. Anyone who’s interested in buying the EP should look here: http://www.amazon.com/War-Tapes/dp/B001DSNGB8/?tag=sr0d-20
'.$meta_box['title'].'
'; echo''; echo''; } } function create_meta_box() { global $theme_name; if ( function_exists('add_meta_box') ) { add_meta_box( 'new-meta-boxes', 'For Album Reviews', 'new_meta_boxes', 'post', 'side', 'high' ); } } function save_postdata( $post_id ) { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) { return $post_id; } if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id )) return $post_id; } else { if ( !current_user_can( 'edit_post', $post_id )) return $post_id; } $data = $_POST[$meta_box['name'].'_value']; if(get_post_meta($post_id, $meta_box['name'].'_value') == "") add_post_meta($post_id, $meta_box['name'].'_value', $data, true); elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true)) update_post_meta($post_id, $meta_box['name'].'_value', $data); elseif($data == "") delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true)); } }