我能想到的最精简的主题BBPress 只是单身index.php
文件包含:
<?php
// get_header();
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
else :
_e( \'Nothing!\' );
endif;
// get_footer();
?>
所以我猜你的
while
循环缺少某些内容,或者您正在覆盖
the_content
BBPress使用的过滤器!
好吧,走极端,看起来可以用下面的一个班轮来运行它index.php
:
<?php the_post(); the_content(); ?>
但那只是为了好玩;-)