I just check the SP forum and see that one person requested it. I added few lines of code in functions.php file and got it. Here is the code:
1 2 3 4 5 6 7 8 |
add_action( 'genesis_after_entry', 'genesis_do_author_box_on_page', 8 ); function genesis_do_author_box_on_page(){ if ( ! is_singular('page') ) return; if ( get_the_author_meta( 'genesis_author_box_single', get_the_author_meta( 'ID' ) ) ) genesis_author_box( 'single' ); } |
Leave a Reply