-
-
Save Audiovoyeur/744a56097cfc4fe1935ee30cf921c6d4 to your computer and use it in GitHub Desktop.
Rename WordPress "Posts" to "News"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Rename "Posts" to "News" | |
* | |
* @link http://new2wp.com/snippet/change-wordpress-posts-post-type-news/ | |
*/ | |
add_action( 'admin_menu', 'pilau_change_post_menu_label' ); | |
add_action( 'init', 'pilau_change_post_object_label' ); | |
function pilau_change_post_menu_label() { | |
global $menu; | |
global $submenu; | |
$menu[5][0] = 'News'; | |
$submenu['edit.php'][5][0] = 'News'; | |
$submenu['edit.php'][10][0] = 'Add News'; | |
$submenu['edit.php'][16][0] = 'News Tags'; | |
echo ''; | |
} | |
function pilau_change_post_object_label() { | |
global $wp_post_types; | |
$labels = &$wp_post_types['post']->labels; | |
$labels->name = 'News'; | |
$labels->singular_name = 'News'; | |
$labels->add_new = 'Add News'; | |
$labels->add_new_item = 'Add News'; | |
$labels->edit_item = 'Edit News'; | |
$labels->new_item = 'News'; | |
$labels->view_item = 'View News'; | |
$labels->search_items = 'Search News'; | |
$labels->not_found = 'No News found'; | |
$labels->not_found_in_trash = 'No News found in Trash'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment