Images of the latest posts in wp are not displayed. What is the problem?
<div class="new-posts"> <?php $recent_posts = wp_get_recent_posts(3); foreach($recent_posts as $post){ echo '<div class="new-post"><a href="' . get_permalink($post["ID"]) . '" title="'.$post["post_title"].'" >'; ?> <img src="<?php wp_get_recent_posts($post["ID"]); ?>" alt=""> <?php echo '</a><a class="link" href="' . get_permalink($post["ID"]) . '" title="'.$post["post_title"].'" >' . $post["post_title"].'</a></div>';}?> </div>