BBPress没有在我创建的自定义主题的前端显示,我无法理解。我激活了Twenty12,它显示出来了,所以我知道它不是一个插件。我还清除了函数。php,这没有任何影响。如何从这里开始故障排除?
Bbpress未显示:如何排除故障?
1 个回复
最合适的回答,由SO网友:birgire 整理而成
我能想到的最精简的主题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(); ?>
但那只是为了好玩;-)结束