BuddyPress Group Home的查询WP页面

时间:2012-02-20 作者:Matt Edminster

我为我的buddypress组创建了一个名为front的新主页模板。php。使用下面的代码,我试图显示名称与组名相对应的wp页面的内容。下面的循环实际上是显示页面。但它不是只显示相应页面的内容,而是显示所有页面的内容,这些页面的名称对应于bp组。我错过了什么?

<?php $args = array( \'post_type\' => \'page\', /*\'pagename\' => bp_the_group()*/ ); 
        query_posts( $args ); ?>

<?php while ( have_posts() ) : the_post(); ?>

<div class="post">

<h1><?php the_title(); ?></h1>

    <div class="entry">
    <?php the_content(); ?>
    </div>

<?php edit_post_link( __( \'{ Edit }\', \'woothemes\' ), \'<span class="small">\', \'</span>\' ); ?>

</div>

<?php endwhile; ?>

1 个回复
SO网友:Boone Gorges

你的问题是bp_the_group(). 此函数不返回值-它类似于WP\\u查询the_post().

尝试:

\'pagename => bp_get_current_group_slug()

结束

相关推荐

BuddyPress用户设置模板位置?

我正在尝试自定义BuddyPress布局,但找不到编辑用户配置文件页面布局的位置。例如:/members/username nice/settings/这就是您可以更改密码的页面。页眉和页脚显示正常,并且有一个表单可以更改您的密码,但我找不到该模板文件的来源。我已将/wp-content/plugins/buddypress/bp-themes/bp-default/members/single中的所有文件复制到我的主题中。此文件夹中没有**设置文件夹。我能够编辑所有其他配置文件模板(活动、配置文件等),