I'm trying to emulate having the column images on the demo page by manipulating the index file. I don't know php and I can't get any images to show unless I change the code from this:
$placeholder_image1 = get_bloginfo('template_url').'/files/medium1.jpg';
#$placeholder_image2 = get_bloginfo('template_url').'/files/medium1.jpg';
#$placeholder_image3 = get_bloginfo('template_url').'/files/medium1.jpg';
to this:
$placeholder_image1 =('http://locallifetacoma.org/wp-content/webimages/icon_about_us.jpg');
#$placeholder_image2 =('http://locallifetacoma.org/wp-content/webimages/twofivetreesllfrontsmall.jpg');
#$placeholder_image3 =('http://locallifetacoma.org/wp-content/webimages/chalkboard.jpg');
or this:
$placeholder_image1 = get_bloginfo('template_url').'/files/icon_about_us.jpg';
#$placeholder_image2 = get_bloginfo('template_url').'/files/twofivetreesllfrontsmall.jpg';
#$placeholder_image3 = get_bloginfo('template_url').'/files/chalkboard.jpg';
Except then the mainpage just displays whatever the first image is for all three. Take a look: http://locallifetacoma.org.
How do I fix this so I can have three different images? Is there a way within the wpadmin backend? It doesn't show an option for an image when you select "page" or anything like that.














