我正在为公司开发一个网站,我需要能够为一个自定义帖子类型提供多个模板文件。我有三个目标网页,它们以不同的方式显示相同的服务列表/自定义帖子类型的帖子;但是,根据用户所在的页面,我希望更改内部模板。
例如,如果用户在图库登录页面上并且他们点击自定义帖子类型,我希望加载单图库模板。如果用户位于推荐登录页面上,我希望加载单个推荐模板,等等......
我搜索了WordPress并找到了像template_part和endpoints这样的东西,但作为WordPress的新用户,我需要更多的帮助!
非常感谢任何帮助。谢谢!
答案 0 :(得分:0)
get_template_part()
例如:
if($thispage == 'gallery') {
get_template_part('single', 'gallery'); // the file for this one is single-gallery.php
}elseif($thispage == 'other'){
get_template_part('single', 'other'); // the file for this one is single-other.php
}
或者那样
get_template_part('single', $thispage );
答案 1 :(得分:0)
对于快速解决方案,我建议这样的事情:
链接时,您可以使用:
<a href="<php the_permalink();?>?template=gallery"> Gallery Page </a>
然后在single-customposttype.php
上if($_POST['template'] == 'gallery') {
get_template_part('single', 'gallery'); // the file for this one is single-gallery.php
}elseif($_POST['template'] == 'other'){
get_template_part('single', 'other'); // the file for this one is single-other.php
}
不是最漂亮的,但它很容易推出。