我正在使用WordPress Headless API和NextJS作为前端构建博客。
我的问题是在前端,我需要这种组合:
发布网址始终为:domain.com/blog/[category]/[slug]
博客页面:看起来像domain.com/blogs
的
如果用户单击博客内同一页面上的类别,则该目录应为domain.com/blogs/[category]
,并使用与博客页面相同的模板,并且两者均应指向帖子的网址。
因此,如果用户在博客页面上并单击一个类别,则应该在博客页面上说,但该条目应更改为domain.com/blog/[category]. No matter what category the user is on, ir if there is no category, the post url should be always
domain.com/blog/ [category] / [slug]。
我不确定如何实现这一目标。我已经尝试了很多东西,并且做了一些工作,但是无法使它使用一个模板并根据需要拥有url。