=== Extended User Profile === Contributors: Ralf Hortt Donate link: http://extended-user-profile.horttcore.de Tags: user profile, profile, author page Requires at least: 2.2.0 Tested up to: 2.3.3 Stable tag: 1.2 Extend your the user profile == Description == The webmaster can extended with the basic html knowledge, or even with some copy paste skills to add more input fields or textareas to their user profile form. == Installation == Upload the extended-user-profile.php into your plugin folder and activate it. All you have to do now is to change the extend_user_profil() as you want. To show the added meta values in the front end use the wordpress get_usermeta() function or my own call_usermeta(), it retrieves an object with all values. == Screenshots == screenshot-1.jpg screenshot-2.jpg == Frequently Asked Questions == How can I echo the variables? You can easily put sth up like this on your author template: $meta = call_usermeta(); // call all new meta values print_r($meta); // Get an overview whats in the object echo $meta->email // echo an meta value Will it add any new tables? No, it uses the wordpress usermeta table and won't mess up your clean database.