Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created November 7, 2014 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/beb827a15c5407e62de2 to your computer and use it in GitHub Desktop.
Save billerickson/beb827a15c5407e62de2 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove post titles from Grid Loop
*
* @author Bill Erickson
* @link http://www.studiopress.com/forums/topic/grid-loop-plugin-remove-post-title/
*/
function be_remove_grid_loop_titles() {
if( apply_filters( 'is_genesis_grid_loop', false ) )
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
add_action( 'genesis_before_entry', 'be_remove_grid_loop_titles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment