BuddyPress标题显示不正确

时间:2013-05-25 13:12:33

标签: wordpress themes title buddypress

我在我的Wordpress页面上安装了自己的主题和Buddypress但是当我更新到最新版本(1.7.2)时,BuddyPress页面的标题显示不正确(个人资料页面,群组页面,...):它们显示在HTML表单。二十二十二个主题一切都很好看。 作为替代方案,我尝试为BuddyPress创建一个新主题(使用我的主题文件夹中的组,成员,...文件夹),但我发现它有太多的工作要做。是不是只有标题的简单解决方案。 我的群组标题的屏幕截图: Title of the groups page
截图应该看起来如何:
enter image description here

<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 -->

1 个答案:

答案 0 :(得分:0)

我在我的functions.php中使用了CSS Tricks中的“删除私人/受保护的帖子标题”代码段。删除后,它再次起作用。