function add_facebook_page_type() {
	$args = array(
	'label' => 'Facebook',
	'labels' => array(
		'singular_name' => 'Facebookページ',
		'add_new_item' => 'Facebookページを追加',
		'add_new' => '新規追加',
		'new_item' => '新規Facebookページ',
		'view_item' => 'Facebookページを表示',
		'not_found' => 'Facebookページは見つかりませんでした',
		'not_found_in_trash' => 'ゴミ箱にFacebookページはありません。',
		'search_items' => 'Facebookページを検索',
	),
	'public' => true,
	'show_ui' => true,
	'query_var' => true,
	'capability_type' => 'post',
	'hierarchical' => false,
	'menu_position' => 5,
	'supports' => array('title','editor','author','thumbnail','excerpt','comments','custom-fields')
	);
	register_post_type('facebook', $args);
}
add_action('init', 'add_facebook_page_type');
