Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Change the label of posts
- */
- function prefix_change_post_object() {
- $get_post_type = get_post_type_object('post');
- $labels = $get_post_type->labels;
- $labels->name = 'Projects';
- $labels->singular_name = 'Projects';
- $labels->add_new = 'Add Projects';
- $labels->add_new_item = 'Add Projects';
- $labels->edit_item = 'Edit Projects';
- $labels->new_item = 'Projects';
- $labels->view_item = 'View Projects';
- $labels->search_items = 'Search Projects';
- $labels->not_found = 'No Projects found';
- $labels->not_found_in_trash = 'No Projects found in Trash';
- $labels->all_items = 'All Projects';
- $labels->menu_name = 'Projects';
- $labels->name_admin_bar = 'Projects';
- }
- add_action( 'init', 'prefix_change_post_object' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement