Site Meter Blogging Pointers » WordPress Tutorials

WordPress Tutorials

Installing a WordPress plugin

Saturday, June 16th, 2007

Have you found a plugin you just have to have? Don’t know how to install it? Great news WordPress has made this a very easy task for us to complete.

After downloading the plugin you will want to upload it to your server. For this I use fireFTP for the FireFox web browser. A quick search of Google will return many other choices for FTP programs. Ftp or “file transfer protocol? programs simply transfer the selected files from your personal computer to your web server and vise versa.

Using your ftp program upload all of the files and folders included with the download to your wp-content/plugins folder on your server. Be sure to keep the structure of your downloads the same so you don’t cause problems with the functioning of the plugin.

After finishing your upload open up the WordPress administration panel yoursite.com/wp-admin and click on the Plugins option from the top menu. Scroll down to the newly installed plugin and activate it. You should now be ready to go.

Most WordPress Plugins come with some sort of options or help page that can usually be found under the Options tab in Admin. panel. Alternatively, make sure to check out the read me file typically included with the download. The authors website is also a good place to look for support or difficulties with a selected plugin. Happy Blogging!!!

, , ,

Adding links to the WordPress sidebar

Saturday, June 16th, 2007

Would you like to add an affiliate link or maybe a link to your other website from your sidebar navigation within your WordPress blog. This tutorial is going to teach you just that, so follow along and you will soon be blogging freely.

Step 1

Open up your Wordpress Administration panel, usually found at (http://www.yoursite.com/wp-admin/).

Step 2

Go to Presentation/theme editor and open up the sidebar.php file. You should now be looking at the file that contains the php for your themes sidebar.

Step 3

Scroll down until you find the menu section in which you would like to place the link. For instance if you are placing the link under Categories, you should be able to find a snippet of code that has something like:

<h2>Categories</h2>

On the theme I am using for reference it looks like this:

<h2>Categories </h2>
<ul class=?menublock?>
<?php list_cats(0, ?, ‘name’, ‘asc’, ?, 1, 0, 0, 1, 1, 1, 0,?,?,?,?,?) ?>
</ul>

Most themes I have seen do have the sidebar items set in an “uncategorized list? or <ul> as this example is. If I wanted to add my personal link to this code I could simply (more…)

Horizontal navigation for WordPress

Saturday, June 16th, 2007

Many people are looking to add a horizontal navigation bar to the top of their WordPress blog pages. These nav bars can be very helpful in displaying important information site wide. I will mention that the installation will vary from theme to theme, but with this tutorial you should be able to get your navigation up and running.

Step 1

Open up your Wordpress admin panel and travel to Presentation/Theme and click on your desired theme for this project.

Step 2

Next go to Presentation/theme editor and open up your header.php file. Scroll to the bottom of this file and add:

<div id=?navigation?>
<ul id=?nav?>
<li><a href=?<?php echo get_settings(’home’); ?>/? title=?Home: <?php bloginfo(’name’); ?>?>Home</a></li>
<?php wp_list_pages(’sort_column=menu_order&title_li=’); ?>
</div>

If you would like to add a link to your RSS feeds you can add this:

<li><a href=?<?php bloginfo(’rss2_url’); ?>?>RSS</a></li></ul>

And if you don’t wish to show the sites pages but instead say outside links, you would remove: (more…)

Find and Install a WordPress theme

Saturday, June 16th, 2007

One of the coolest perks of using WordPress for your blog is the limitless customization options. The one major option at your fingertips are themes (or templates) that can instantly change the look and feel of your entire blog. WordPress themes are widely available free of charge under the GNU License and come in all sorts of styles, colors and topics.

Where do you find WordPress Themes?

When starting your search for the perfect WordPress theme, keep in mind what your plans are. If you are interested in creating your own look, you don’t need to focus as much on appearance as you should the overall layout. You can always change the appearance. If you are still a little uncomfortable with jumping into the CSS and PHP, find a nice design that fits your subject and slowly make changes as you learn.

The first place I go when looking for a WordPress theme is the Theme Viewer. Here you will find so many different possibilities for the overall (more…)

Using images in your WordPress posts

Saturday, June 16th, 2007

A question I have often heard come up, is how do you add an image to your WordPress post. WordPress version 2.1.3 has made this task pretty easy for us. Images can really dress up a post quite nicely or they can be used to help convey a message if you are writing a tutorial for example.

We should start by choosing an image that you wish to use. The next step is to start the post. Lets open up your Wordpress admin. panel and go to Write - Write Post and you should be looking at a blank post entry. I usually start by filling in the post title and then write the actual post itself. From here we have a couple of options:

  1. Use an image already stored on your server. If you are going with this option you can place your cursor where you would like your image to be inserted and click the “insert/edit image? icon at the top of your WordPress editor(it has the picture of a little tree). A window should open up with your available options:

(more…)

Adding a logo to your WordPress blog

Saturday, June 16th, 2007

Most, if not all, WordPress themes have a simple “h1″ text link in the header with a background image corresponding to the theme, (shown in picture). If you are like me this will just not do. I feel that placing your own logo for not only branding purposes, but design as well, is a crucial starting point when building your own blog. Many visitors view your logo as a representation of the site because it is often times the first thing they will notice when entering your page. This aids in the branding of your site across the web, every time someone sees this logo.

In this short tutorial I am going to show you how to remove the default text link and change the current background image to include your own custom logo. For the process of creating your own logo, you will most likely want one of the many graphics programs available. I personally use Photoshop cs2, however this is a pretty expensive program. Gimp and Paint.Net are both great open source(free) image editing programs that are very popular among many users. Now on to the tutorial.

1) Lets start by opening your WordPress administration panel and going to Presentation - Theme editor - Header, you should now be looking at the code for the header.php file. Just under the <body> tag you should see <div id=?header?> and below this there should be a call to the blog info. This should look something like:

<?php bloginfo(’name’); ?>
<?php bloginfo(’description’); ?>

Removing these two snippets of code will remove the default text links in your themes header to clean it up a little.

2) Now with that out of the way, we are going to begin adding your own logo. Lets open Presentation - Theme editor - Stylesheet and you should be looking at your style.css file. Once you have this open scroll down and (more…)

Adding a background image to your WordPress posts

Saturday, June 16th, 2007

I have been asked several times how to add a background image to your WordPress post. Well it is actually not very difficult and if used correctly it can add a great deal of style to your blog.1) We are going to start by opening up your WordPress admin. panel and going to Presentation - Theme editor - Single Post, you should now be looking at the single.php file. Scroll down on this page until you find:

<?php the_content; ?>

Wrap this in a div tag like this:

<div id=?post_bg?><?php the_content; ?></div>

2) Now lets go to Presentation - Theme editor - Stylesheet and add:

#post_bg {
background: url(’images/post_bg.gif’) no-repeat;
}

Make sure that the background url is pointing to the destination of your background image. If you have a small image and would like to display it lets say on the right side of the post, you can use:

#post_bg {
background: url(’images/post_bg.gif’) no-repeat;

align: right;
}

Instead of post_bg you can name this anything you like as long as it remains the same across all pages.

3) Alternatively, if you would also like to display this background on the posts shown on your blogs homepage, you can (more…)

Customizing the WordPress login screen

Saturday, June 16th, 2007

Do you know that many people haven’t even looked at their WordPress blogs registration or login pages. There are way to many bloggers that use a theme at face value, in other words the what you see is what you get syndrome. My advice, if you are going to build your own blog make it unique to you and don’t stop designing at the home page, take your designs site wide. With this in mind, lets go so far as to customize our very own Wordpress login page. After all, at some point in time your readers are likely to see it.

Before we start this tutorial, we need to locate and download two files from your server.
<ul>
<li>/wp-login.php</li>

<li>/wp-admin/wp-admin.css</li> </ul>

In a text editor, such as Notepad, open your wp-login.php file. Scroll down the page or do a search and find the reference to WordPress, should be just under the <body> tag, such as:

<h1><a href=?<?php echo apply_filters(’login_headerurl’, ‘http://wordpress.org/’); ?>? title=?<?php echo apply_filters(’login_headertitle’, __(’Powered by WordPress’)); ?>?><span class=?hide?><?php bloginfo(’name’); ?></span></a></h1>

and change it to:

<h1><a href=?<?php echo apply_filters(’login_headerurl’, ‘http://www.cssforwordpress.com’); ?>? title=?<?php echo apply_filters(’login_headertitle’, __(’CSS for WordPress’)); ?>?><span class=?hide?><?php bloginfo(’name’); ?></span></a></h1>

Make sure you change the site url and title to your own, unless you don’t mind sending me some extra traffic. You can now save and upload this file to your server. Next, open up the wp-admin.css file in your text editor and scroll down to #login, which should look something like this:

#login {
position: relative;
background: url(’images/login-bkg-tile.gif’) no-repeat top center;
color: #fff;
margin: 5em auto 1em;
padding: 20px 0 0;
width: 425px;
_width: 390px;
}

#login form {
background: url(’images/login-bkg-bottom.gif’) no-repeat bottom center;
padding: 0 50px 25px;
_width: 325px;
_margin: 0 auto;
}

#login #login_error {
background: #0e3350;
border: 1px solid #2571ab;
color: #ebcd4e;
font-size: 11px;
font-weight: bold;
padding: .6em;
width: 310px;
margin: 0 50px;
text-align: center;
}

This is where you can add or change (more…)

About Blogging Pointers

From the step by step detailed tutorials to assist in the set up of your blog, to the most current news on the blogging front, we've got you covered. You will find powerful articles on supercharging your blog to make it profitable, on kick starting your advertising and maybe even one or two that will make you rethink your positions, or refine your writing techniques. This site is a tool for you to use as you need it, a gift from one blogger to another. We welcome your feedback and comments. Get out there and keep blogging.

Blogging Pointers Author(s)

New Media, Web 2.0 Channel Posts

  • Podcasting Transcription
    A Guest Post from Tishia Lee of Tishia Saves Time: When I first started offering transcription services as part of my Virtual Assistant business, transcribing podcasts was not something I [...]
  • Don't Dabble - Make A Commitment
    If you want to get the best bang for your buck, plan on podcasting for the long haul. Podcasters who “test” things out with one or two podcasts and then give up may think that they've given [...]
  • A Question of Podcasting Frequency
    This follows up on yesterday's post about not dabbling in podcasting but rather to make a commitment. Podcasting on a schedule is important when building a community and an audience. Don’t have [...]
  • Do You Twitter About Your Podcast?
    Whenever I release a new episode of Work at Home Moms Talk Radio is pop the link up on my Twitter and invite my followers to come check it out. This has brought me several first time listeners which [...]
  • Looking for Podcast Outsourcing?
    I mentioned having my podcast audio's transcribed in my last post. In case you wonder - no, I do not transcribe them myself. (Shudder the thought - I did enough transcription to last a lifetime in [...]
  • Business Podcasting Benefit: Be An Industry Thought Leader
    I often ask people 'Why haven't you started your podcast yet?' and a common reply is 'I don't feel like I'm enough of an expert to cover the topic I'm interested in.' Enough of an expert? [...]
  • Business Podcasting Benefit: More Content
    Building a business on the web requires that you generate a lot of content. Content on your website draws traffic both through search engines (people searching for your content) and through links [...]
  • Business Podcasting Benefit: Deeper Relationships
    A website visitor is just a website visitor. You can't really say that you have a relationship with someone who has only visited your website can you? But when the web visitor subscribes to [...]
  • Business Podcasting Benefit: Increased Market Exposure
    When you consider how many millions of people are walking around with iPods and other Mp3 players you have to wonder, wouldn't it be awesome if they came looking for you? Well they do. Ipod [...]
  • D'ya Know Your Podcasting ABCs?
    I embarked on a fun little project this winter in which I have been working my way through the alphabet, looking for words for each letter that I could apply to the subject of podcasting. I've [...]

Hot Off The Press

  • Double Mastectomy for Applegate
    Christina Applegate, best known for her 10-year roll on Fox's Married with Children as Kelly Bundy and more recently as star of Samantha Who?, admitted this morning on Good Morning America that she [...]
  • Let's continue to check out the Olympics
    There are tons of athletes in this year's Olympics that I could just sit and listen to them tell me tales about the Olympics as they hand their medal around my neck while I pretend it is me on that [...]
  • Most College Students Suicidal, Pt. 1
    I'll freely admit it -- I tried to commit suicide when attending Millersville University. Obviously, I screwed it up. That was way back in 1990, long before I would ever become the Prozac Poster [...]
  • Brand New Tracy (Niki) Wallpaper for Season 3
    The Heroes official MySpace page has released the third in their series of Season 3 wallpapers.  This one is of Tracy, the new character played by Ali Larter. Take a look: This is the third [...]
  • The three best words EVER...
    No, no, no. It's not "I love you." Heck, it's not even "You're not fat!" No, these words are the best words in the world to every mother out there (and if you say they're not, you're either crazy, or [...]
  • Celebrity splits no one cares about
    Aw, Mister Peepers just got married two months ago and he's already being dumped. And you can't say that his wife is just a gold digger, because I can't imagine that he's got all that much money. [...]
  • School teaches methods to treat animal abusers
    A common assumption is that people who are cruel to animals eventually will hurt people. Ted Bundy, Jeffrey Dahmer, David “Son of Sam” Berkowitz and Albert “Boston Strangler” DeSalvo shared a [...]
  • Keeping the Slugs at Bay in Your Urban Garden
    I live in Portland, Oregon, and it is a lovely city. Very lush, with verdant landscapes and plenty of slugs to eat their way through it. I can honestly say that I have never seen so many [...]
  • Lowering the Drinking Age (a "heads-up")
    The response has been overwhelming ... and, quite frankly, it's brought me cause to study each comment carefully before writing any further dissertations on the subject. However, sometime [...]
  • The First Episode Is Useless
    I've said it before and I'm going to say it again. You have to watch more that 1 episode before making up your mind. I was reminded of this recently when I checked out the anime Air. I'll be [...]