Advertisement
srikat

Untitled

Oct 13th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. //* Customize entry meta in entry header for all Posts that belong to a particular category
  2. add_filter( 'genesis_post_info', 'mpp_post_info_filter' );
  3. function mpp_post_info_filter($post_info) {
  4.     if ( ! in_category( 'upcoming-auctions' ) ) {
  5.             return $post_info;
  6.     }
  7.  
  8.     $post_info = '';
  9.  
  10.     return $post_info;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement