Advertisement
buddydev

Display color for xprofile field value

Feb 26th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_filter( 'bp_get_the_profile_field_value', function ( $value, $field_type ) {
  2.  
  3.     if ( 'color' == $field_type ) {
  4.         $value = sprintf( '<div style="background-color:%s;width:20px;height:20px;"></div>', $value );
  5.     }
  6.  
  7.     return $value;
  8. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement