You appear to be a bot. Output may be restricted
Description
Are comments enabled in Genesis at Theme Settings → Comments and Trackbacks?
Usage
$bool = genesis_comments_enabled();
Parameters
Returns
bool True if comments are enabled for this post type.
Source
File name: genesis/lib/structure/comments.php
Lines:
1 to 4 of 4
function genesis_comments_enabled() { return ( is_page() && genesis_get_option( 'comments_pages' ) ) || ( is_single() && genesis_get_option( 'comments_posts' ) ); }