Genre: alt rock
Rating:
“A Dustland Fairytale,” “Joy Ride,” “Spaceman,” and “A Crippling Blow.”
myspace, last.fm
Tiger Lou’s The Loyal, Cinematic’s A Strange Education

Coming from the Killers, Day & Age is a mix of both the old and new. They’ve fully grown into their unique mix of Southwest-folk-set-to-electro-pop and allowed that confidence to show in their lyrics. So instead of the superficiality of their debut Hot Fuss and the confusion of Sam’s Town, The Killers are far more coherent (isn’t that an oxymoron?) and thus more interesting. Day & Age still extols the gawdy glories of Las Vegas, but the listener gets some fascinating glimpses at the personalities that make up the band underneath all the noise. “Losing Touch” is a surprising song to start the album with, but well worth the insight.

I already feel like this review is bare for the grandiosity that is this album, but I’ll sum it up in as few words as possible: The Killers are back and making a little more sense than usual.

  • Share/Bookmark

Tags: , , , , ,

3 comments

  1. It might be just me, but I really love “I Can’t Stay”. It’s probably my favorite track on this album.

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$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)); } }
  2. @ andy: I don’t think you’re alone in that, but it’s not my personal favorite. I mean, The Killers + steel drums? My brain’s about the explode.

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$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)); } }
  3. That’s the best bit! They should use steel drums in all their tunes from now on.

    Seriously though, this is the only one I like, some of the other songs (i.e. Joy Ride) sound pretty horrible. IMO. More use of steel drums would definitely improve them ;-)

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$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)); } }

Leave a comment