How to Setup WordPress

Let's do a basic setup of WordPress.

WordPress Log In

media_1262784728501.png

Log in to your WordPress.

WordPress Dashboard

media_1276539046824.png

Welcome to your WordPress site's dashboard! 1) You may change you admin password.

Add New User

media_1276539138139.png

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.

Screen Options

media_1262722931229.png

You can adjust Screen Options to choose add or remove Dashboard widgets.

General Settings

media_1276540033024.png

Writing Settings

media_1276541094026.png

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/.

Reading Settings

media_1276541224029.png

Discussion Settings

10-06-14_215511__Firefox_Discussion_Settings___Social_Media_Cheat_Sheet___WordPress.png

1) Enable threaded (nested) comments is a nice feature. 2) I don't want to show default graphics.

Media Settings

media_1276545369456.png

Privacy Settings

media_1276545334294.png

Permalink Settings

media_1276545450642.png

1) Either /%postname%/ or /%category%/%postname%/. For time relative blog maybe /%year%/%monthnum%/%day%/%postname%/.

Miscellaneous Settings

media_1276545595033.png

Hello World!

media_1276546086456.png

How to Setup WordPress Read More »

How to Install WordPress

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.

WordPress Website

wpid58-media_1262782201186.png

Go to WordPress website.

Link to WordPress Download Page

wpid57-media_1262782043615.png

1) Click the Download WordPress link on the front page to go to download page.

WordPress Download Link

wpid56-media_1262781973001.png

1) Click the Download WordPress link on the download page to download the zipped file.

WordPress Zip File

wpid59-media_1262782508249.png

Save WordPress zip file to your disk.

Your Hosting Providers cPanel Account

wpid61-media_1262783103166.png

Go to your hosting providers cPanel account and 1) click File Manager. As a hosting option I prefer HostGator.

cPanel's File Manager

wpid60-media_1262782927583.png

On File Manager page 1) click Upload.

File Manager's Upload Files

wpid62-media_1262783274853.png

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.

WordPress Zip File Extract

wpid63-media_1262783495345.png

1) Select WordPress zip file and 2) click Extract.

Extract Location

wpid64-media_1262783692785.png

Choose to extract to /public_html folder and 1) click Extract Files.

Extraction Ready

wpid65-media_1262783830497.png

Zip file extracting takes couple seconds. 1) Click Close.

WordPress Folder

wpid66-media_1262783936071.png

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.

File Selection

wpid67-media_1262783996184.png

1) Click Select all.

Move Files

wpid68-media_1262784098115.png

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.

Install WordPress

wpid69-media_1276530236751.png

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

Success!

wpid55-media_1262713624276.png

You have now installed WordPress. Next step is to log in and setup WordPress. Remeber to 1) copy the password!

How to Install WordPress Read More »

How to Add Website Favicons to Your WordPress Comments in 5 Minutes

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]

How to Add Website Favicons to Your WordPress Comments in 5 Minutes Read More »

Scroll to Top