Advertisement
Guest User

Untitled

a guest
Sep 14th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter( 'genesis_post_info', 'remove_post_info_exclude_news_category' );
  2. /**
  3. * @author Brad Dalton
  4. * @link http://wpsites.net/web-design/modify-post-info-genesis
  5. */
  6. function remove_post_info_exclude_news_category($post_info) {
  7. if ( in_category('web-design') ) {
  8. $post_info = '[post_comments] [post_edit]';
  9. return $post_info;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement