>
-
+
+
+
-
-
diff --git a/template-parts/content.php b/template-parts/content.php
index 4f7ee77dd3..15d83d29d6 100644
--- a/template-parts/content.php
+++ b/template-parts/content.php
@@ -27,26 +27,30 @@
?>
+
+
-
-
"%s"', '_s' ),
- array(
- 'span' => array(
- 'class' => array(),
- ),
- )
- ),
- wp_kses_post( get_the_title() )
- )
- );
+ if ( !is_singular() && has_excerpt() ) :
+ the_excerpt();
+ else :
+ the_content(
+ sprintf(
+ wp_kses(
+ /* translators: %s: Name of current post. Only visible to screen readers */
+ __( 'Continue reading "%s"', '_s' ),
+ array(
+ 'span' => array(
+ 'class' => array(),
+ ),
+ )
+ ),
+ wp_kses_post( get_the_title() )
+ )
+ );
+ endif;
wp_link_pages(
array(