因此,如果我理解正确的话,当你在一个帖子页面上时,你希望有一个导航菜单,其中包含所有post\\u类型的bbp\\u论坛帖子。
我有一个类似的例子(没有post\\u类型,但添加它并不是问题),我使用了我发现讨论过的代码posts of same category, on single post pages.
代码如下(带有post\\u类型的自定义):
<ul>
<?php global $post; $cat_posts = get_posts(\'post_type=bbp_forum\');
foreach($cat_posts as $post) : ?>
<li <?php if($post->ID == get_the_ID()){ ?>class="cur_post" <?php } ?>>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( \'Permalink to %s\', \'twentyten\' ), the_title_attribute( \'echo=0\' ) ); rel="bookmark"?>" ><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
我希望这就是你的意思。
P、 S-我还看到您有一个空缺<;ul>;标记,但为结束(<;div>;标签