In Genesis there are two ways to do this: there is the direct filter or the simple function call. Calling the function calls the filter, so either way the filter is being called.
To enable the Author Box you can add the following to your functions.php file.
[php]
// Enable Author Box on Single/Archive pages
add_filter( 'get_the_author_genesis_author_box_single', '__return_true' );
add_filter( 'get_the_author_genesis_author_box_archive', '__return_true' );
[/php]
Or, the Genesis way to do this is:
[php]
// Enable Author Box on Single/Archive pages
genesis_enable_author_box();
genesis_enable_author_box( array( 'type' => 'archive' ) );
[/php]
Elizabeth Barnett says
Thank you so much! Enabling the author box in Genesis is going to be away more awesome than using a silly plugin! 🙂
Vince says
Is there a way to enable author box in pages? by default author box appears only on posts.. how about the pages? Is there a way to do that?