我想显示一个依赖于页面的特定帖子类型,所以例如我有一个博客文章类型,我想显示当用户在/ blog并且我有一个链接帖子类型并想要显示当用户在/ link时。这是可能的,我目前在index.php中有这个代码
<?php get_header(); ?>
<div id="content"><!-- CONTENT START -->
<h2><?php echo ucwords($post->post_title);?></h2>
<div id="subNavigation"><!-- SUBNAV START -->
<?php
if(get_the_title($post->post_parent) == "Members Content") {
$children .= '<li><a href="forums">Forums</a></li>';
$children .= '<li><a href="members">Members</a></li>';
$children .= '<li><a href="groups">Groups</a></li>';
} else {
$permalink = get_permalink($post->post_parent);
$children .= '<li><a href="'.$permalink.'">'. get_the_title($post->post_parent). '</a></li>';
}
if($post->post_parent)
$children .= wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
else
$children .= wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
</div><!-- SUBNAV END -->
<div id="contentMainInterior"><!-- CONTENT MAIN START -->
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</div><!-- CONTENT MAIN END -->
<div class="clear"></div>
</div><!-- CONTENT END -->
答案 0 :(得分:1)
答案 1 :(得分:0)
如果您正在谈论自定义帖子类型,最好的方法是为每个帖子类型索引页面创建模板。例如,您有一个名为“博客”的页面,并将其指定为“博客”模板,您可以在其中编辑帖子查询以查找'post_type' => 'blog_post'
或您的类型。