How to Hide the "Share a Draft" Admin Menu

function plt_hide_shareadraft_menus() {
	//Hide the "Posts → Share a Draft" menu.
	remove_submenu_page('edit.php', 'shareadraft/shareadraft.php');
}

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

Where do I put this code?