> For the complete documentation index, see [llms.txt](https://docs.devhub.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devhub.com/themes-and-custom-templates/advanced-examples/override-page-title-and-meta-tags.md).

# Override page title and meta tags

If needed, you can manipulate the title and various other parts of the Page meta data from within an Embed module.

```
{% set overrides = {'title': 'Some title', 'meta_description': 'Updated meta description'} %}
{% do set_page_overrides(overrides) %}
```

You have access to the following Page options

* `title`
* `meta_description`
* `meta_keywords`
* `noindex`
* `nofollow`

## Override opengraph (og:) tags

You are able to set or override existing opengraph meta tags

```
{% set overrides = {'title': 'Some title', 'image': 'https://www.example.com/img/upload/share-image.png'} %}
{% do set_opengraph_overrides(overrides) %}
```
