How to Hide the "Featured Posts Grid" Admin Menu

function plt_hide_featured_posts_grid_menus() {
	//Hide the "Featured Posts Grid" menu.
	remove_menu_page('featured-posts-grid');
}

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

Where do I put this code?