Streamline Theme Snippets
<img src="http://demo.studiopress.com/streamline/files/2012/02/profile.jpg" alt="Brian Gardner" />
<p style="margin: 0;">Starbucks Addict. Nomad Theorist. Loving Husband. Sarah McLachlan Fan. Future Ironman. Founder, StudioPress. Partner, Copyblogger Media. <a href="http://demo.studiopress.com/streamline/sample/">Read More</a>.</p>
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
/** Add post image above post title */
add_action( 'genesis_before_post', 'streamline_post_image' );
function streamline_post_image() {
if ( is_page() ) return;
if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
}
}