Forums
-
- Forum
- Posts
-
- Installation
- 28,417
- Troubleshooting
- 62,428
- Themes
- 10,418
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
Code like this:
add_filter('get_profile_info_keys', 'add_sig_key');
function add_sig_key( $keys ) {
$keys['sig'] = array(0, __('Signature'));
}
Just add that to the plugin file. It should probably work, but it’s a bit of a guess.
Much better to do it this way with a plugin than editing core files, too.