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 ...
Posted in Advanced Use, Configuration, User Profile | No Comments »
Sunday, July 6th, 2008
Putting content into WordPress is very intuitive. You login, and navigate to the Write tab, type out what you want and press publish. However, there are tons of options that you can use to push the limits of WordPress to your benefits.
The difference between posts and pages
A post and page ...
Posted in Basic Use, Content, Pages, Posts | No Comments »
Friday, July 4th, 2008
When you get your site set up, or you have your site set up and you have found a theme you like and that fits your website's purpose, you need to install it.
Just about the only way to install your theme is to use an FTP program to push it ...
Posted in Configuration, Themes | No Comments »
Monday, June 30th, 2008
From Wordpress:
Permalinks are the permanent URLs to your individual weblog posts, as well as categories and other lists of weblog postings. A permalink is what another weblogger will use to link to your article (or section), or how you might send a link to your story in an e-mail message. ...
Posted in Configuration, How to set up your website | No Comments »
Saturday, June 28th, 2008
The title of your blog is the first thing that your users are going to see.It will more than likely be the most prominent thing at the top of any page on your site. Think of this as how you are branding your site.
The biggest and most prominent things ...
Posted in Basic Use, Configuration | No Comments »