Sometimes it useful to change the word ‘Posts’ in the admin area to make it easier for your client to identify what sort of content they are adding. Whilst ‘Posts’ makes perfect sense to anyone who has used WordPress for a long time, it can be changed to make it more user friendly.
The following snippet needs to go into you themes functions.php file somewhere between the opening and closing php tags. You can also put this into a plugin so that it isn’t theme dependant
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = 'News';
$submenu['edit.php'][5][0] = 'All news';
$submenu['edit.php'][10][0] = 'Add news item';
echo '';
}
add_action( 'admin_menu', 'change_post_menu_label' );
The above example changes posts to ‘News’ and you can of course change the name you want to use from ‘News’ to ‘Blog’ or anything else.
How do you go about growing your agency? Do you rely on repeat business and…
Following on from yesterday's post “if you want to be tougher, be tougher”, this is…
We were recently asked by someone why we relatively expensive and charged more than someone else…
We are pleased to announce that our first e-book is now available to download on…
A nice mix this week of Wordpress guides and e-commerce posts make up this weeks…
GDPR features today and this is going to be a hot topic in WordPress and…
This website uses cookies.