bp_nouveau_wp_profile_field_data()

Output the WP profile field data.

Description

Source

File: bp-templates/bp-nouveau/includes/members/template-tags.php

1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
function bp_nouveau_wp_profile_field_data() {
    $data = bp_nouveau_get_wp_profile_field_data();
    $data = make_clickable( $data );
 
    echo wp_kses(
        /**
         * Filters a WP profile field value.
         *
         * @since BuddyPress 3.0.0
         *
         * @param string $data The profile field data value.
         */
        apply_filters( 'bp_nouveau_get_wp_profile_field_data', $data ),
        array(
            'a' => array(
                'href' => true,
                'rel'  => true,
            ),
        )
    );
}

Changelog

Changelog
Version Description
BuddyPress 3.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.