Xtra

[insert_php]
global $post;
$args = array( ‘post_type’ => ‘post’, ‘posts_per_page’ => 3, ‘post_status’ => ‘any’, ‘post_parent’ => null );
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $post ) {
setup_postdata( $post );
the_title();
the_attachment_link( $post->ID, false );
the_excerpt();
}
wp_reset_postdata();
}
[/insert_php]