Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function create_post_type() {
- register_post_type('students',
- array(
- 'labels' => array(
- 'name' => __('Étudiants'),
- 'singular_name' => __('Étudiant'),
- 'add_new' => __( 'Nouveau', 'textdomain' ),
- 'add_new_item' => __( 'Ajouter un nouvel étudiant', 'textdomain' ),
- 'new_item' => __( 'Nouvel étudiant', 'textdomain' ),
- 'edit_item' => __( 'Modifier l\'étudiant', 'textdomain' ),
- 'view_item' => __( 'Voir l\'étudiant', 'textdomain' ),
- 'all_items' => __( 'Tous les étudiants', 'textdomain' ),
- 'search_items' => __( 'Parcourir les étudiants', 'textdomain' ),
- 'not_found' => __( 'Aucun étudiant.', 'textdomain' ),
- ),
- 'public' => true,
- 'supports' => array(
- 'title', 'editor', 'thumbnail', 'comments'
- )) );
- }
- add_action('init', 'create_post_type');
Advertisement
Add Comment
Please, Sign In to add comment