Home › Forums › Backend Issues (wp-admin) › Change "Custom Fields" label › Reply To: Change "Custom Fields" label
I found this wp-admin-menu-classes on Github, it works really well! You can pretty much rename, remove and copy any item or section within wp-admin. Very powerful and very handy!
https://gist.github.com/mikeschinkel/792b7aa5b695d1092520
That class plus this little bit of code I was able to change the navigation to suit my needs.
// Change wp-admin menu
add_action('admin_menu','admin_menu_changes');
function admin_menu_changes() {
rename_admin_menu_section('Custom Fields', 'Product Features');
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.