我在用户的个人资料页面上创建了一个额外的标签,我想在其中显示个人资料字段。
这就是我首先创建额外标签的方法,我在里面创建了一个新的bp-custom.php
function profile_new_nav_item() {
global $bp;
bp_core_new_nav_item(
array(
'name' => 'About',
'slug' => 'about',
'default_subnav_slug' => 'extra_sub_tab', // We add this submenu item below
'screen_function' => 'view_manage_tab_main'
)
);
}
add_action( 'bp_setup_nav', 'profile_new_nav_item', 10 );
function view_manage_tab_main() {
add_action( 'bp_template_content', 'bp_template_content_main_function' );
bp_core_load_template( 'template_content' );
}
function bp_template_content_main_function() {
if ( ! is_user_logged_in() ) {
wp_login_form( array( 'echo' => true ) );
}
}
function profile_new_subnav_item() {
global $bp;
bp_core_new_subnav_item( array(
'name' => 'Extra Sub Tab',
'slug' => 'extra_sub_tab',
'parent_url' => $bp->loggedin_user->domain . $bp->bp_nav[ 'about' ][ 'slug' ] . '/',
'parent_slug' => $bp->bp_nav[ 'about' ][ 'slug' ],
'position' => 10,
'screen_function' => 'view_manage_sub_tab_main'
) );
}
add_action( 'bp_setup_nav', 'profile_new_subnav_item', 10 );
function view_manage_sub_tab_main() {
add_action( 'bp_template_content', 'bp_template_content_sub_function' );
bp_core_load_template( 'template_content' );
}
function bp_template_content_sub_function() {
if ( is_user_logged_in() ) {
echo 'you are here';
} else {
wp_login_form( array( 'echo' => true ) );
}
}
在最后一个函数中查看它echo 'you are here';
的位置,我想在那里显示配置文件字段。我有下面的代码,但我无法弄清楚如何将其嵌入那里。
如果我echo bp_the_profile_field()
我收到以下错误
致命错误:在null
上调用成员函数the_profile_field()
以下代码在另一个页面上完美运行,它会获取所有可用字段。
<div class="bp-widget <?php bp_the_profile_group_slug(); ?>">
<h4><?php bp_the_profile_group_name(); ?></h4>
<table class="profile-fields">
<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
<?php if ( bp_field_has_data() ) : ?>
<tr<?php bp_field_css_class(); ?>>
<td class="label"><?php bp_the_profile_field_name(); ?></td>
<td class="data"><?php bp_the_profile_field_value(); ?></td>
</tr>
<?php endif; ?>
<?php
do_action( 'bp_profile_field_item' ); ?>
<?php endwhile; ?>
</table></div>
答案 0 :(得分:1)
替换它:
echo 'you are here';
有了这个:
bp_get_template_part( 'members/single/profile/profile-loop' );