Here is a solution…
It’s not exactly a “Best Practice” solution but it gets the job done in 2 simple steps!
*********** Part 1 ******************
First start your loop:
`<?php $my_query = new WP_Query(‘showposts=1’);
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>`
Then call the excerpt wich you previously copied your photo into (in Edit Post>Advanced Options>Excerpt ) with the img tag (<img class=”” title=”” src=”https://www.yoursite.com/wp-content/uploads/2008/10/picture_name.jpg” alt=”” />):
“>
<?php the_excerpt_rss(); ?>
Then insert a div class and call it what ever you want (I called mine PhotoHack):
<div class=”photohack”>
Call your title:
<h1>” rel=”bookmark”>
<?php the_title(); ?>
</h1>
Now call your content:
<?php the_content(); ?>
Close your div class:
</div>
And close your loop:
<!–
<?php trackback_rdf(); ?>
–>
<?php endwhile;?>
*********** Part 2 ******************
Add your div class to your style sheet (CSS) with the following info:
.photohack img {
display: none;
}
Save and your done.
RECAP
Your loop should look like this:
<?php $my_query = new WP_Query(‘showposts=5’);
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
“>
<?php the_excerpt_rss(); ?>
<div class=”photohack”>
<h1>” rel=”bookmark”>
<?php the_title(); ?>
</h1>
<?php the_content(); ?>
</div>
<!–
<?php trackback_rdf(); ?>
–>
<?php endwhile;?>
And your css like this:
.photohack img {
display: none;
}