Support

Account

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');
    }