Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- register_post_type( 'student',
- array(
- 'labels' => array(
- 'name' => __( 'Student', 'edu_text_domain' ),
- 'singular_name' => __( 'Student', 'edu_text_domain' ),
- 'add_new' => __( 'Add New Student', 'edu_text_domain' ),
- 'add_new_item' => __( 'Add New Student', 'edu_text_domain' ),
- 'edit_item' => __('Edit Student Info', 'edu_text_domain'),
- 'view_item' => __('View Student Info', 'edu_text_domain'),
- 'not_found' => __( 'Sorry, we couldn\'t find the Student you are looking for.', 'edu_text_domain' )
- ),
- 'public' => true,
- 'menu_icon' => 'dashicons-admin-users',
- 'supports' => array('title', 'custom-fields', 'thumbnail'),
- 'has_archive' => true,
- 'rewrite' => array('slug' => 'student'),
- 'capability_type' => 'page',
- )
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement