Help with getting basic plugin to work
-
Hi there
I want to add more fields to the users profile and also display them under the users role in posts.
I just want it to fetch the information from the users meta data.
How ever the following does not appear to work
`
<?phpfunction add_author_details( $user_details ){
/* Add author details */
$user_details['soldier'] = __('Soldier Name');return $user_details;
}
add_filter('user_adddetails', 'add_author_details');function add_author_details_author() {
echo get_user_meta(bbp_get_reply_author_id(), 'soldier', true);
}
add_action( 'bbp_theme_after_reply_author_details', 'add_author_details_author' ); ?>
`Any help would be appreciated.
- You must be logged in to reply to this topic.