Steve

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Conditionally remove author box from posts by category #13574
    Steve
    Customer

      I found an answer to this from StudioPress.

      This code removes the “author box” (genesis_post_info) from the whole site:

      remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );

      You could always add a condition (this would go in your functions.php file):

      /** Remove Post Info */
      if (is_category('Category Name'))
        remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
    Viewing 1 post (of 1 total)