Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active July 30, 2016 22:48
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/2514234aac626621ae42 to your computer and use it in GitHub Desktop.
Save billerickson/2514234aac626621ae42 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove Post Info and Meta from Teasers
*
* @author Bill Erickson
* @link http://www.billerickson.net/code/remove-post-info-meta-teasers/
*/
function be_remove_info_from_teasers() {
// First, we make sure we're in the grid loop.
if( ! apply_filters( 'is_genesis_grid_loop', false ) )
return;
// Remove if a teaser
if( in_array( 'teaser', get_post_class() ) ) {
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
}
}
add_action( 'genesis_before_entry', 'be_remove_info_from_teasers' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment