For a clients website I need to remove post info for multiple categories. So, here is the code I use to remove genesis_post_info from multiple categories.
add_action( 'genesis_before_post', 'auc_conditional_post_actions' );function auc_conditional_post_actions() {if( in_category( '1' ) ) {remove_action( 'genesis_before_post_content', 'genesis_post_info' );}else {add_action( 'genesis_before_post_content', 'genesis_post_info' );}}
// Use below code if you want to remove from multiple categories add_action( 'genesis_before_post', 'auc_conditional_post_actions' );function auc_conditional_post_actions() {if(in_category(array('1', '2', '3'))) {remove_action( 'genesis_before_post_content', 'genesis_post_info' );}else {add_action( 'genesis_before_post_content', 'genesis_post_info' );}}Add above code to the bottom of your child theme’s functions.php file.





Your answer lifts the intelligence of the dbtaee.