Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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