Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'bp_get_the_profile_field_value', function ( $value, $field_type ) {
- if ( 'color' == $field_type ) {
- $value = sprintf( '<div style="background-color:%s;width:20px;height:20px;"></div>', $value );
- }
- return $value;
- }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement