How to Hide the "Posts Per Category" Admin Menu

function plt_hide_posts_per_category_menus() {
	//Hide the "Settings → Posts Per Category" menu.
	remove_submenu_page('options-general.php', 'posts-per-category');
}

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

Where do I put this code?