You appear to be a bot. Output may be restricted
Description
Conditionally add the author box after single posts or pages.
Usage
$void = genesis_do_author_box_single();
Parameters
Returns
void Return early if not a single post or page, or post type does not support `author`.
Source
File name: genesis/lib/structure/post.php
Lines:
1 to 11 of 11
function genesis_do_author_box_single() { if ( ! is_single() || ! post_type_supports( get_post_type(), 'author' ) ) { return; } if ( get_the_author_meta( 'genesis_author_box_single', get_the_author_meta( 'ID' ) ) ) { genesis_author_box( 'single' ); } }