Add static breadcrumbs using page names

Hi All,

is there any way to create a STATIC breadcrumb structure based on the page name / title and all prior pages in the hierarchy.

Example: my url is:
domain.com/level1/level2/current-page

I want my bread crumb to show:

home > level 1 > level 2 > current page

Note this is not based on a CMS and I want this to be static and not be dynamically generated as static URLS tend to have better SEO.

Right now I hard code this, but it will be hell to maintain across a web site of several hundred pages

Hi Lorey

Did you ever find a solution to this, as I’m looking for the same functionality?

Thank you

Stephen

Hi Lorey, for the current page, you can grab the page title (set in webflow) and inject it into currentpage (with css id).

i.e. $('#currentpagetextid').text(document.title)

For the previous levels, without CMS these would need to be hard-coded.