File: /home/dailyajk/public_html/wp-content/themes/jphostbd-news12/include/customs_post.php
<?php
/* --------------Our Team Customs Post Register----------------- */
if(function_exists('register_post_type')) {
register_post_type('team', array(
'labels' => array(
'name' => __('Our Team', 'news'),
'menu_name' => __('Our Team', 'news'),
'add_new' => __('Add New Post', 'news'),
'add_new_item' => __('Add New Post', 'news'),
),
'public' => true,
'menu_icon' => 'dashicons-groups',
'supports' => array('title','editor','thumbnail')
));
}
/* --------------Photo Gallary Customs Post Register----------------- */
if(function_exists('register_post_type')) {
register_post_type('news-photo', array(
'labels' => array(
'name' => __('Photo', 'news'),
'menu_name' => __('Photo Gallary', 'news'),
'add_new' => __('Add New Photo', 'news'),
'add_new_item' => __('Add New Photo', 'news'),
),
'public' => true,
'menu_icon' => 'dashicons-images-alt',
'supports' => array('title','thumbnail')
));
}
/* --------------Video Gallary Customs Post Register----------------- */
if(function_exists('register_post_type')) {
register_post_type('news-video', array(
'labels' => array(
'name' => __('Video', 'news'),
'menu_name' => __('Video Gallary', 'news'),
'add_new' => __('Add New Video', 'news'),
'add_new_item' => __('Add New Video', 'news'),
),
'public' => true,
'menu_icon' => 'dashicons-format-video',
'supports' => array('title','editor')
));
}