WordPress 3.0 Compatible Plugins
Check out my Plugins page.
Check out my Plugins page.
Table of Contents
Let's do a basic setup of WordPress.
Log in to your WordPress.
Welcome to your WordPress site's dashboard! 1) You may change you admin password.
Add yourself as a new user, log out and log in with your own username. For security reasons you may disable default admin user. Log out and log in with your new username.
You can adjust Screen Options to choose add or remove Dashboard widgets.
1) Size of the post box: 16 lines
2) There is a debate whether to use one ping service, multiple ping services or none. I would start like under the radar with none. Later on, when my site gets momentum, I could add maybe one or two ping services: http://rpc.pingomatic.com/ or http://ping.feedburner.com/ and http://rpc.blogcatalog.com/.
1) Enable threaded (nested) comments is a nice feature. 2) I don't want to show default graphics.
1) Either /%postname%/ or /%category%/%postname%/. For time relative blog maybe /%year%/%monthnum%/%day%/%postname%/.
Table of Contents
Let's install WordPress by downloading WordPress files from WordPress website, uploading files to your web hosting server and extracting all the files. After these small steps we are ready to setup our WordPress site. If you need some more information, check out the Famous 5-Minute Install Guide for WordPress.
1) Click the Download WordPress link on the front page to go to download page.
1) Click the Download WordPress link on the download page to download the zipped file.
Save WordPress zip file to your disk.
Go to your hosting providers cPanel account and 1) click File Manager. As a hosting option I prefer HostGator.
On File Manager page 1) click Upload.
On Upload files page 1) click Browse and choose the WordPress zip file from you own computer. We will now upload the file to server.
1) Select WordPress zip file and 2) click Extract.
Choose to extract to /public_html folder and 1) click Extract Files.
Zip file extracting takes couple seconds. 1) Click Close.
Extractin WordPress zip file puts all the files into /public_html/wordpress folder. You want to move those files to /public_html folder. 1) Double click wordpress folder name to move into that folder.
1) Click Select all.
Enter /public_html and 1) click Move Files. Now you should have all WordPress file in /public_html folder. You may delete the uploaded zip file.
We are now ready with copying WordPress files to your server. Open your website and 1) fill in your blog title and 2) e-mail address. 3) You want to allow your blog to appear in search engines unless you are setting up a private blog or a website. 4) Click Install WordPress
You have now installed WordPress. Next step is to log in and setup WordPress. Remeber to 1) copy the password!
The AJAXify script can be changed easily to fit your WordPress theme.
[Deluxe Blog Tips: How To AJAXify WordPress Theme]There's a url you can access on Google.com that will give you the favicon for the requested website.
http://www.google.com/s2/favicons?domain=www.highmac.com
So to use this in your theme you can place a little function in functions.php
:
function bm_getFavion ($url = '') { if ($url != '') { $url = parse_url($url); } $url = 'http://www.google.com/s2/favicons?domain=' . $url['host']; return $url; }[Binary Moon: Add Website Favicons to Your WordPress Comments in 5 Minutes]