Custom meta for custom taxonomy page

Hello. I have two pages

http://site.ru/tags/taxname/page/2/
http://site.ru/tags/taxname/page/

How can I add custom meta-title for page http://site.ru/tags/taxname/page/2/ ?
Variable .URL shows URL without page

You can add it as front matter params:

---
title: "your title"
date: 2018-10-28T20:10:24Z
draft: false
metatitle: "your custom meta title"
---

and then in your :

{{ .Params.metatitle }}

@igramnet, you want to change the title of the paginated pages. I point that out, as I think @brunoamaral was answering your topic question (taxonomy page vs pagination page).

Anyhow, Change page title during pagination has a snippet to put ya on the correct path. :slight_smile:

1 Like