我在我的Wordpress页面上安装了自己的主题和Buddypress但是当我更新到最新版本(1.7.2)时,BuddyPress页面的标题显示不正确(个人资料页面,群组页面,...):它们显示在HTML表单。二十二十二个主题一切都很好看。
作为替代方案,我尝试为BuddyPress创建一个新主题(使用我的主题文件夹中的组,成员,...文件夹),但我发现它有太多的工作要做。是不是只有标题的简单解决方案。
我的群组标题的屏幕截图:
截图应该看起来如何:
<div id="page">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 id="page_title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<p id="author"><?php the_author(); ?></p>
<div class="content">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
<?php comments_template(); ?>
</div><!-- main -->