is that the case for you?
no
I paste this code
into my-profile-fields.php file
into my-plugins
but its not working !!
this code :
<?php
/*
Plugin Name: My Profile Fields
Description: My profile fields for my lovely forums
Version 1.0
*/
function my_profile_fields( $fields ) {
/* This removes the Occupation profile field: */
unset( $fields );
/* This adds a new optional field called Favourite Band: */
$fields = array(0,’Favourite Band’);
/* This adds a new *required* field called State: */
$fields = array(1,’State’);
/* You must return the array at the end of the function: */
return $fields;
}
add_filter( ‘get_profile_info_keys’, ‘my_profile_fields’ );
?>
sorry but Its not working
Is there another way ?
For example, put in the code style.css ?