|
@@ -47,7 +47,7 @@ function uiu_cpt_faculty()
|
|
|
'public' => true,
|
|
|
'show_ui' => true,
|
|
|
'show_in_menu' => true,
|
|
|
- 'menu_position' => 5,
|
|
|
+ 'menu_position' => 11,
|
|
|
'menu_icon' => 'dashicons-businessperson',
|
|
|
'show_in_admin_bar' => true,
|
|
|
'show_in_nav_menus' => true,
|
|
@@ -110,7 +110,7 @@ function uiu_cpt_story()
|
|
|
'public' => true,
|
|
|
'show_ui' => true,
|
|
|
'show_in_menu' => true,
|
|
|
- 'menu_position' => 5,
|
|
|
+ 'menu_position' => 12,
|
|
|
'menu_icon' => 'dashicons-businessperson',
|
|
|
'show_in_admin_bar' => true,
|
|
|
'show_in_nav_menus' => true,
|
|
@@ -174,7 +174,7 @@ function uiu_cpt_alumni()
|
|
|
'public' => true,
|
|
|
'show_ui' => true,
|
|
|
'show_in_menu' => true,
|
|
|
- 'menu_position' => 5,
|
|
|
+ 'menu_position' => 13,
|
|
|
'menu_icon' => 'dashicons-businessperson',
|
|
|
'show_in_admin_bar' => true,
|
|
|
'show_in_nav_menus' => true,
|
|
@@ -234,7 +234,7 @@ function uiu_cpt_notice()
|
|
|
'public' => true,
|
|
|
'show_ui' => true,
|
|
|
'show_in_menu' => true,
|
|
|
- 'menu_position' => 5,
|
|
|
+ 'menu_position' => 14,
|
|
|
'menu_icon' => 'dashicons-businessperson',
|
|
|
'show_in_admin_bar' => true,
|
|
|
'show_in_nav_menus' => true,
|
|
@@ -294,7 +294,7 @@ function uiu_cpt_event()
|
|
|
'public' => true,
|
|
|
'show_ui' => true,
|
|
|
'show_in_menu' => true,
|
|
|
- 'menu_position' => 5,
|
|
|
+ 'menu_position' => 15,
|
|
|
'menu_icon' => 'dashicons-businessperson',
|
|
|
'show_in_admin_bar' => true,
|
|
|
'show_in_nav_menus' => true,
|
|
@@ -355,7 +355,7 @@ function uiu_cpt_news()
|
|
|
'public' => true,
|
|
|
'show_ui' => true,
|
|
|
'show_in_menu' => true,
|
|
|
- 'menu_position' => 5,
|
|
|
+ 'menu_position' => 16,
|
|
|
'menu_icon' => 'dashicons-businessperson',
|
|
|
'show_in_admin_bar' => true,
|
|
|
'show_in_nav_menus' => true,
|
|
@@ -370,3 +370,18 @@ function uiu_cpt_news()
|
|
|
register_post_type('news', $args);
|
|
|
}
|
|
|
add_action('init', 'uiu_cpt_news', 0);
|
|
|
+
|
|
|
+// $existing_CPT_menu = 'edit.php?post_type=notice';
|
|
|
+// $link_our_new_CPT = 'edit.php?post_type=news';
|
|
|
+
|
|
|
+// add_submenu_page($existing_CPT_menu, 'SubmenuTitle', 'SubmenuTitle', 'manage_options', $link_our_new_CPT);
|
|
|
+
|
|
|
+// // functions.php
|
|
|
+// add_action('admin_menu', function () {
|
|
|
+// add_menu_page(
|
|
|
+// 'Custom Admin Page',
|
|
|
+// 'Custom Admin Page',
|
|
|
+// 'manage_options',
|
|
|
+// 'faculty',
|
|
|
+// );
|
|
|
+// });
|