ID.'.css'; $web = get_template_directory_uri().$file; if ( file_exists(get_template_directory().$file) ) echo ""."\n";}} add_action('wp_head', 'custom_style_post_sheets'); ob_start('blank_save'); function blank_save($artd_buffer) { global $single_styles; $data = "\n".$single_styles; $artd_buffer = str_replace('', $data."\n", $artd_buffer); return $artd_buffer;} add_action('the_content', 'blank_inline'); function blank_inline($data) { global $post, $single_styles; if(is_single() or is_page()) $single_styles .= str_replace( '#postid', $post->ID, get_post_meta($post->ID, 'blank_custom_single', true) )."\n"; return $data;} add_action('publish_page','blank_save_postdata'); add_action('publish_post','blank_save_postdata'); add_action('save_post','blank_save_postdata'); add_action('edit_post','blank_save_postdata'); function blank_save_postdata( $post_id ) { if ( !wp_verify_nonce( $_POST['blank-custom-nonce'], 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;} delete_post_meta( $post_id, 'blank_custom_single' ); if(trim($_POST['custom-single']) != '') add_post_meta( $post_id, 'blank_custom_single', stripslashes($_POST['custom-single']) ); return true;} add_action('admin_menu', 'blank_add_meta_box'); add_action('admin_head', 'blank_admin_head'); function blank_admin_head() { ?>
'; ?>

Note : You can insert CSS, JavaScript, Favicon, Meta desription & keywords here.

Example CSS : <link rel='stylesheet' href='http://url-css-here/style.css' type='text/css' media='all' />

Example JS : <script type='text/javascript' src='http://url-js-here/style.css'></script>

Example Meta Description : <meta name="description" content="Insert Description Here" />

Example Meta Keywords : <meta name="keywords" content="Insert Keywords Here" />