How to Hide the "My defer.js" Admin Menu

function plt_hide_shins_pageload_magic_menus() {
	//Hide the "My defer.js" menu.
	remove_menu_page('defer-wordpress');
}

add_action('admin_menu', 'plt_hide_shins_pageload_magic_menus', 11);

Where do I put this code?