---
title: "Page Custom URLs"
description: "Feed Ghost theme Authors, Membership, Recommendations and Tags pages. Rename a page template to change its URL, and edit or remove links in en.json."
url: "https://www.priority.vision/docs/feed/page-custom-urls"
scope: theme
appliesTo: [Feed]
lastUpdated: 2026-09-23
---

# Custom Pages URLs

The Feed theme includes built-in pages. This guide explains how to customize these pages and manage their navigation links throughout your site.

## Built-in Pages Overview

The theme includes these built-in pages:

- Authors (`/authors/`)
- Membership (`/membership/`)
- Recommendations (`/recommendations/`)
- Tags (`/tags/`)

## Customizing Page URLs

Follow these steps to customize the URLs of built-in pages:

1. Rename the respective template file in your theme folder:
    - `page-authors.hbs` → `page-your-new-slug.hbs`
    - `page-membership.hbs` → `page-your-new-slug.hbs`
    - `page-recommendations.hbs` → `page-your-new-slug.hbs`
    - `page-tags.hbs` → `page-your-new-slug.hbs`
1. Update the page URL in Ghost admin to match your new slug

## Managing Navigation Links

The theme includes built-in links to some pages in various templates. You can manage these links through the locales file, but the behavior differs depending on the page type.

### Completely Removing Links

Some links can be completely removed from theme templates by setting them to `"false"` in `/locales/en.json`:

```json
{
  "/recommendations/": "false",
  "/tags/": "false",
  "/authors/": "false"
}
```

### Changing Link URLs

To update the URLs of these links, modify `/locales/en.json`:

```json
{
  "/recommendations/": "/my-picks/",
  "/tags/": "/topics/",
  "/authors/": "/team/"
}
```

## Removing Pages

- Delete the corresponding page in Ghost admin
- For non-authentication pages, you can completely remove links using the locales file

## Documentation Index
> Fetch the complete documentation index at: https://www.priority.vision/docs/feed/llms.txt
> Use this file to discover all available pages before exploring further.
