hsquareweb
10/15/2012 - 11:04 PM

WP: Create Simple Custom Post

WP: Create Simple Custom Post

//CUSTOM POSTS
	function PS_Radio() {
		register_post_type('PS Radio', array(
			'label' => 'PS Radio',
			'public' => true,
			'has_archive' => true,
			'menu_position' => 5,
			'menu_icon' => '/wp-content/themes/sample/images/sample.png',
			'supports' => array('title','editor','author','thumbnail','excerpt','trackbacks','custom-fields','comments','revisions','page-attributes','post-formats'),
			'taxonomies' => array('category','post_tag')
			));
	}
	add_action('init', 'PS_Radio');