Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Created May 5, 2013 03:51
Show Gist options
  • Save jamiemitchell/5519621 to your computer and use it in GitHub Desktop.
Save jamiemitchell/5519621 to your computer and use it in GitHub Desktop.
Remove post info/meta on products category pages
<?php
/* Remove post info/meta on products category pages
------------------------------------------------------------ */
add_action('genesis_before','remove_post_info_meta');
function remove_post_info_meta() {
if ( in_category('products')) {
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment