Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function sk_featured_image_above_title_blog() {
- if ( is_front_page() ) {
- return;
- }
- if ( ! ( is_home() || is_archive() ) ) {
- return;
- }
- // Get the URL of featured image
- $image = genesis_get_image( 'format=url' );
- if ( ! $image ) {
- return;
- }
- // Display featured image
- printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement