如何重定向WordPress中的帖子?
我正在使用 WordPress,我的主页上有 9 个置顶帖子,
当有人点击其中一个帖子时,我不希望打开该帖子,
我想打开另一个页面(具体是一个类别),所以你能告诉我吗怎么办?
此致
I am using wordpress and I have 9 sticky posts on my home page
when someone clicks on one of these posts I don't want the post to open
I want to open a nother page (a category to be specific) so can you tell me how to do that ?
Best Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的循环中,您需要修改 来指向该帖子的类别。
您的主页可以设置在index.php和home.php上。我建议创建一个模板页面和一个新页面并将该模板链接到它。这样,您将保持index.php 和home.php 完好无损,以应对后备情况。
如果您希望它是动态的,您可以在此处查看类别代码:http://codex.wordpress.org/Function_Reference/get_category_link
In your loop you would need to modify the to point towards the category of that post instead.
Your home page can be set on index.php and home.php. I would recommend creating a template page instead and a new page and linking that template to it. That way you will leave index.php and home.php intact for fallback situations.
If you want it dynamic you can view the category codex here:http://codex.wordpress.org/Function_Reference/get_category_link
如果 is_sticky 为 true,则在循环中运行类别条件而不是永久链接。
许多主题都包含一个loop.php 文件,其中包含所有条件等。基本前提是:
In your loop run a conditional to the category instead of the permalink if is_sticky is true.
A lot of themes contain a loop.php file that contains all the conditionals etc. The basic premise is: