function genesis_do_post_content() { if ( is_singular() ) { the_content(); if ( is_single() && 'open' === get_option( 'default_ping_status' ) && post_type_supports( get_post_type(), 'trackbacks' ) ) { echo '<!--'; trackback_rdf(); echo '-->' . "\n"; } if ( is_page() && apply_filters( 'genesis_edit_post_link', true ) ) { edit_post_link( __( '(Edit)', 'genesis' ), '', '' ); } return; } if ( 'excerpts' === genesis_get_option( 'content_archive' ) ) { the_excerpt(); return; } /** * Filters the more text used with the_content_limit() and the_content. * * @since 2.7.0 * * @param string $more_text The more text after going through genesis_a11y_more_link(). */ $more_text = apply_filters( 'genesis_more_text', genesis_a11y_more_link( __( '[Read more...]', 'genesis' ) ) ); if ( genesis_get_option( 'content_archive_limit' ) ) { the_content_limit( (int) genesis_get_option( 'content_archive_limit' ), $more_text ); return; } the_content( $more_text ); }