Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 30, 2015 14:20
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 billerickson/85d5cc268b0a2255a19c to your computer and use it in GitHub Desktop.
Save billerickson/85d5cc268b0a2255a19c to your computer and use it in GitHub Desktop.
<?php
// Don't include the <?php, only here for styling the gist
function be_move_grid_image() {
// First, we make sure we're in the grid loop.
if( ! apply_filters( 'is_genesis_grid_loop', false ) )
return;
if( in_array( 'teasuer', get_post_class() ) ) {
// Move image above title
remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
add_action( 'genesis_entry_header', 'genesis_do_post_image', 4 );
}
}
add_action( 'genesis_before_entry', 'be_move_grid_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment