Keep the same number of posts if a category is excluded from a list

If you are going to set the value to an empty string, then query for the (not) empty string…

{{ $p := where (where site.RegularPages "Type" "posts") "Params.frontpage" "ne" "" }}
{{ range (.Paginate $p).Pages }}
  <h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ end }}