Crie uma lista dos id´s que você quer:
List<int> ids = new List<int>(){1, 2};
from post in ListPost where ids.Contains(post.id_tipo_post) select new {id = post.id_post, tipo = post.id_tipo_post}
Crie uma lista dos id´s que você quer:
List<int> ids = new List<int>(){1, 2};
from post in ListPost where ids.Contains(post.id_tipo_post) select new {id = post.id_post, tipo = post.id_tipo_post}