Skip to content

Instantly share code, notes, and snippets.

@kavyagokul
Created October 21, 2015 09:37
Show Gist options
  • Save kavyagokul/66b155f93fed2d2238d3 to your computer and use it in GitHub Desktop.
Save kavyagokul/66b155f93fed2d2238d3 to your computer and use it in GitHub Desktop.
Old code to change Genesis admin menu icon
function customize_post_admin_menu_labels() {
global $menu;
$menu["58.996"][0] = 'Custom';
$menu["58.996"][6] = 'path-to-custom-image.png'
}
add_action( 'admin_menu', 'customize_post_admin_menu_labels' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment