Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Top featured post

// Register Custom Post Type
function top_featured() {

	$labels = array(
		'name'                => _x( 'Top Featured', 'Post Type General Name', 'text_domain' ),
		'singular_name'       => _x( 'Top Featureds', 'Post Type Singular Name', 'text_domain' ),
		'menu_name'           => __( 'Top Featured', 'text_domain' ),
		'parent_item_colon'   => __( 'Parent Item: Top Featured Area', 'text_domain' ),
		'all_items'           => __( 'All featureds', 'text_domain' ),
		'view_item'           => __( 'View featured', 'text_domain' ),
		'add_new_item'        => __( 'Add New Featured', 'text_domain' ),
		'add_new'             => __( 'Add New Featured', 'text_domain' ),
		'edit_item'           => __( 'Edit featured ', 'text_domain' ),
		'update_item'         => __( 'Update featured', 'text_domain' ),
		'search_items'        => __( 'Search featured', 'text_domain' ),
		'not_found'           => __( 'Not found', 'text_domain' ),
		'not_found_in_trash'  => __( 'Not found in Trash', 'text_domain' ),
	);
	$args = array(
		'label'               => __( 'top_featured', 'text_domain' ),
		'description'         => __( 'Top Featured is displaying featured post', 'text_domain' ),
		'labels'              => $labels,
		'supports'            => array( 'title', 'editor', 'excerpt', 'custom-fields', 'post-formats', ),
		'taxonomies'          => array( 'category', 'post_tag' ),
		'hierarchical'        => false,
		'public'              => true,
		'show_ui'             => true,
		'show_in_menu'        => true,
		'show_in_nav_menus'   => true,
		'show_in_admin_bar'   => true,
		'menu_position'       => 5,
		'menu_icon'           => 'http://cellenzehosting.com/projects/pankaj/wp-content/uploads/2014/08/back-to-top.png',
		'can_export'          => true,
		'has_archive'         => true,
		'exclude_from_search' => false,
		'publicly_queryable'  => true,
		'capability_type'     => 'page',
	);
	register_post_type( 'top_featured', $args );

}

// Hook into the 'init' action
add_action( 'init', 'top_featured', 0 );