The Author Box is easily removed from the single post page within a particular category within the Genesis Theme Framework. Use the following php to remove the Author Box from the single post page within your chosen category. Just make sure to replace the category ID, name, or slug. Read more in the WordPress Codex.
add_action( 'template_redirect', 'dream_conditional_authorbox' ); /** * Remove authorbox from category 20 * * @author Jen Baumann * @link http://dreamwhisperdesigns.com/?p=424 */ function dream_conditional_authorbox(){ if( in_category('20') ){ remove_action( 'genesis_after_post', 'genesis_do_author_box_single' ); } }
Place the code in the functions.php file, anywhere after this:
require_once(TEMPLATEPATH.'/lib/init.php');
And before the following closing code (if it exists):
?>