And this, my friends, is why I will never make it as a professional blogger (or any sort of blogger in general, actually). In my defense I’ve had a lot of personal stuff going on and my non-musical and non-internet life has been taking off like crazy so I’m tried to find a modicum of peace. I found it, but I ignored everything else at the same time.

June is now the month for female singer/songwriters. Still accepting suggestions, so shoot me an email at awaitstheday@gmail.com!

See you on the flip side.

  • Share/Bookmark

One comment

  1. Utada Hikaru? :)

    /* 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