Skip to content

Instantly share code, notes, and snippets.

@robincornett
Created October 28, 2014 01:45
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 robincornett/cd61b7c3742b39bd5f7e to your computer and use it in GitHub Desktop.
Save robincornett/cd61b7c3742b39bd5f7e to your computer and use it in GitHub Desktop.
add photo to entry content
<?php
add_action( 'genesis_entry_content', 'rgc_add_photo', 1 );
function rgc_add_photo() {
global $post;
$name = the_title_attribute( 'echo=0' );
echo get_the_post_thumbnail( $post->ID, 'large', array( 'class' => 'aligncenter', 'title' => $name, 'alt' => $name ) );
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment