Archive for the ‘Advanced Use’ Category

How to remove User profile fields

Tuesday, August 24th, 2010

Similar to this post, you can add a new function that is called by the "user_contactmethods" filter. Then, unset the values for the contact methods you no longer would like. For AIM, you would do the following in your functions.php file: function bwa_remove_some_contactmethods( $contactmethods ) { unset($contactmethods['aim']); return $contactmethods; } add_filter('user_contactmethods','bwa_remove_some_contactmethods',10,1); You can modify the other items ...

WordPress upgrade woes?

Tuesday, July 6th, 2010

It is that time again, when a new version of WordPress comes out.  Since this is a major release (3.0) and not a minor release like 2.9.2, site owners are starting to feel a little bit of pain due to the upgrade.  Some people may not notice anything and happily ...

Moving Your WordPress Site to a New Server

Monday, July 5th, 2010

If you are changing your site's domain, please read our article "Changing the Domain of your WordPress Site" as well as this one. ----- To change the server your WordPress site is hosted on is actually a fairly simple activity. The most important thing to do is NEVER take down the ...