Skip to content

Instantly share code, notes, and snippets.

@eslucky
Created June 6, 2014 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eslucky/65bff6a344d34e9b702f to your computer and use it in GitHub Desktop.
Save eslucky/65bff6a344d34e9b702f to your computer and use it in GitHub Desktop.
Pull Featured Image on Pages Only with Genesis Simple Hooks
<?php
if( is_page() ) {
genesis_image(
array(
'format' => 'html',
'size' => 'full',
'num' => 0,
'attr' => array( 'class' => 'feature' )
)
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment