I have a custom taxonomy, which has URLs like this: /destination/usa/hawaii/
What I would like to achieve is to enable Gutenberg on URLs like that. That would mean, that an administrator could edit the URL and put blocks just how he would on normal posts and pages.
WordPress is only giving me an option to add description to the taxonomy term like with the Classic Editor. But this is not powerful enough for me. I would like to add some of my blocks.
How can I achieve this?
What I have tried:
I tried creating a page with permalink /destination/
and another subpage with permalink /usa/
so that it ends up having the same URL /destination/usa/
as my taxonomy Term. I was hoping that WordPress will detect my page first and display that one because on normal pages in WordPress I have the Gutenberg Block editor. But WP still displays the Term, not the Page with the same permalink.
Another idea I had is basically creating set of pages with the same link structure: /pages/usa/hawaii/
, set them to noindex and out of the sitemap and then use .htaccess to rewrite:
/destination/* => /pages/*
But this seems very hacky and also can lead to confusion.