Ok, lets see if I can explain this.
I’m trying to set a template, i.e. blog, to act as a single entry page so I can use the prev_entry and next_entry tags to move between posts.
In other words, I have the blog template created and it pulls the latest entry just fine. However, when the template is called directly, the URL is /blog/, not /blog/post_title as a single entry page would be. Since this is not treated as a single entry page, the prev_entry and next_entry tags do not work. I am trying to figure out a conditional or some other way of forcing this. Maybe even a redirect. No dice yet.
I am not looking to actually display the URL as /blog/post_title - just to act like it - although that would work if there was a way to do it.
I’ve tried using pagination but that throws me into the loop of /blog/p1, /blog/p2 and so on .. not what I’m looking for.
This is not an issue linking to the blog template from another template since I can set the link to include the title and the prev_entry/next_entry tags work as expected. Its just that first time if someone calls the blog template directly that I’m stumbling on.
I would think has to be some kinda voodoo that will get this working. Any ideas?