I’d like a couple of my hashtags to be in the main navigation links section, but it looks like there isn’t a way to do that. Is there a way to make a pinned post redirect to a hashtag or Is there some other workaround? I’m on the rant.li instance, btw.
I was just trying to do this today! I agree that being able to Pin a Hashtag Page would be useful. It would be an easier way to structure top-level navigation on a Blog (rather than creating Pages that then link to Hashtags).
Copy this into the custom Javascript section of your blog customization page, obviously replace with your own blog url and hashtag :
var a = document.querySelector('a[href="https://blog.echoingfrog.ca/short-stories"]'); if (a) { a.setAttribute('href', 'https://blog.echoingfrog.ca/tag:shortstories'); }
Create as many as you need/want. All the posts that include the hashtag will then be found under the subpage, and all subpages will appear as a menu on top of all your pages.
I didn’t create this, I simply copied from another blog (or I had found the solution here in the forum, can’t remember).
Hope that helps.