---
title: Enable Breadcrumbs
url: "https://www.seopress.org/support/guides/enable-breadcrumbs/"
lang: en-US
updated: 2026-02-21
---

# Enable Breadcrumbs

## Activate the Breadcrumbs

To do that, go to **SEO, PRO, Breadcrumbs** tab.

Check the radio button (iOS way) associated with **Breadcrumbs**.

Then, check **Enable Breadcrumbs**.

Set a breadcrumbs separator (default: ” – “).

Click **Save changes**.

[![PRO > Breadcrumbs tab - SEOPress PRO](https://www.seopress.org/wp-content/uploads/2025/06/08-07-pro-breadcrumbs-tab-seopress-pro-scaled.png)](https://www.seopress.org/wp-content/uploads/2025/06/08-07-pro-breadcrumbs-tab-seopress-pro-scaled.png)

*PRO > Breadcrumbs tab – SEOPress PRO*

## Add the Breadcrumbs to your theme

### Using the Block Editor

**Edit** a page, add a new block, search for “**Breadcrumbs**” and add it to your post content.

Use the **block panel** from the right column to change the design.

Save the post.

### Using the FSE (Full Site Editing)

Go to **Appearance**, **Editor**, edit the **Header template part**.

Add the **Breadcrumbs** block to your template and **Save changes** (checkout the above video to learn more about this).

### Using the Elementor page builder

Simply drag and drop the **Breadcrumbs** block from **Elementor’s left bar** into your template on the right.

### Using PHP

Copy and paste this code in your theme to call the breadcrumbs (eg: header.php file):

```
if(function_exists("seopress_display_breadcrumbs")) {
    seopress_display_breadcrumbs();
}
```

If you only want to get the breadcrumb (ie do not make an “echo” but a “return”), specify “false” as parameter when calling the function:

```
if(function_exists("seopress_display_breadcrumbs")) {
    seopress_display_breadcrumbs(false);
}
```

### Using the shortcode

You can also use our shortcode in a text widget, post, page or post type:

`[seopress_breadcrumbs]`

That’s it!

### On the same topic

- [Customize Breadcrumbs](https://www.seopress.org/support/guides/customize-breadcrumbs/)
- [Translate Breadcrumbs](https://www.seopress.org/support/guides/translate-breadcrumbs/)
