If else
add_action( 'genesis_before_content', 'before_content_options_page' );
function before_content_options_page () {
if ( is_front_page() ) {
}
elseif ( is_home()){
}
elseif ( is_single() ) {
}
else {
echo '<div class="before_content_option"><div class="before_content_option_header"><h2>';
echo the_field('below_header_static_text_header');
echo '</h2></div>';
echo '<div class="before_content_option_header_text">';
echo the_field('interior_pages_below_header_text');
echo '</div>';
echo '</div>';
echo '<div style="clear: both;"></div> ';
}
}