How to add images to my recent posts?
-
I am trying to pull in my recent posts and place them on my home page and I want to pull in the title and the first image that is displayed in the post to display on my homepage. What is the easiest way to do this?
<ul> <?php /* * Displays a bar of the five latest listings added */ $myposts = get_posts('numberposts=5&category=4'); foreach($myposts as $post) : setup_postdata($post); ?> <li><?php the_title(); the_content();?></li> <?php endforeach; ?> </ul>
I was using that but the_content() displays all of the content not just the image. How can I do this?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to add images to my recent posts?’ is closed to new replies.