Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // // RENAMING PROJECT CUSTOM POST TYPE TO CASE REVIEWS
- function rename_project_cpt() {
- register_post_type( 'project',
- array(
- 'labels' => array(
- 'name' => __( 'Case Reviews', 'divi' ),
- 'singular_name' => __( 'Case Review', 'divi' ),
- ),
- 'has_archive' => true,
- 'hierarchical' => true,
- 'menu_icon' => 'dashicons-images-alt2', // you choose your own dashicon
- 'public' => true,
- 'rewrite' => array( 'slug' => 'case-reviews', 'with_front' => false ), // change the text portfolio to anything you like
- 'supports' => array(),
- ));
- }
- add_action( 'init', 'rename_project_cpt' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement