Web design

Category Archives: wordpress

April 27 2010

How To Add Images To An Existing Wordpress Gallery

This tutorial will demonstrate how to add images to an existing gallery on your Wordpress post or page.

1. In your dashboard, locate the page or post whose gallery you wish to edit.

2. Click the ‘Add an Image’  icon. [Circled in the illustration below.]

wpgallery01

3. You will be prompted to select files from your computer. Click the ‘Select Files’ button. [See the illustration below.]

wpgallery02

4. A dialog box will apear from which you can browse your computer’s folders for one or more images that you wish to include. To commence uploading files, highlight the desired images and click ‘Open’. [See the illustration below.]

wpgallery03

5. Your files will be uploaded and progress bars will be displayed. Once complete, your upload list will look like the illustration below. Simply click ‘Save all changes’ to confirm that the new images should be added to your existing gallery. You may now close the window.

wpgallery04

Important notes

  • Ensure that the file size does not exceed 2Mb per image. If the files are larger, try resizing them in an image editing program such as Picasa, Photoshop, GIMP or Fireworks.
  • Ensure that the image dimensions do not exceed 3000 pixels for height or width. If the files are larger, try resizing them in an image editing program such as Picasa, Photoshop, GIMP or Fireworks.
March 4 2009

Show Siblings or Children of a Wordpress Page

A useful code snippet I thought I’d share

<div id="subpages">
<h3>Related Pages</h3>
<?php
// If CHILD_OF is not NULL, then this page has a parent
// Therefore, list siblings i.e. subpages of this page's parent
if($post->post_parent){
    wp_list_pages('title_li=&include='.$post->post_parent);
    wp_list_pages('title_li=&child_of='.$post->post_parent);
    }
// If CHILD_OF is zero, this is a top level page, so list subpages only.
else{
    wp_list_pages('title_li=&include='.$post->ID);
    wp_list_pages('title_li=&child_of='.$post->ID);
    }
?>
</div>
January 18 2009

Acid Rain: A New Wordpress Theme

Download

Demo

January 7 2009

The Ultimate List Of Places To Submit Your Wordpress Theme

I’m been on a binge of producing Wordpress themes over the last few weeks and need to find places to show them off. If you are also looking for good places to submit your Wordpress theme, try these websites. Continue reading this article »

September 13 2008

Aurora – A Free Wordpress Theme

Aurora Wordpress Template Continue reading this article »

September 13 2008

Accountant – A Professional Wordpress Theme

Accountant Wordpress Template Continue reading this article »

September 13 2008

Bubblegum – A Free Pink Wordpress Theme

Bubblegum Wordpress Template Continue reading this article »