Advertisement
Guest User

Funtions.php

a guest
Jan 13th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. //* Add new image sizes
  2. add_image_size('grid-thumbnail', 536, 150, TRUE);
  3. add_action ( 'genesis_entry_header', 'sk_show_featured_image_home' );
  4. function sk_show_featured_image_home() {
  5. if ( is_front_page() && has_post_thumbnail() ) {
  6. echo '<div class="home-thumbnail">' . '<a href="'.get_permalink().'">';
  7. genesis_image( array( 'size' => 'grid-thumbnail' ) );
  8. echo '</a></div>';
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement