自定义wordpress行为

时间:2018-01-22 11:43:24

标签: wordpress

我在Wordpress中寻找特定的行为但我没有实现它。

我需要的是每个博文的永久链接看起来像:

http://my-website.com/[custom-post-name-here]

让另一个永久链接看起来像:

http://my-website.com/light/[custom-post-name-here]

第二个链接必须使用它自己的模板页面,因此我可以自定义html标题部分和自定义字段,与普通帖子不同。

有没有人有想法或提示?谢谢

1 个答案:

答案 0 :(得分:0)

在WP中使用slug light创建页面。

设置RewriteRule ^light/(.*)$ /light?viewpost=$1 [l]

创建page-light.php模板并按$_GET['viewpost']

加载帖子