diff --git a/header.php b/header.php index 3e489f79..f052991d 100644 --- a/header.php +++ b/header.php @@ -42,7 +42,12 @@ diff --git a/inc/template-tags.php b/inc/template-tags.php index ca9616f2..72f6edd6 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -65,8 +65,20 @@ function _s_entry_footer() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; - /* translators: %s: post title */ - comments_popup_link( sprintf( wp_kses( __( 'Leave a Comment on %s', '_s' ), array( 'span' => array( 'class' => array() ) ) ), get_the_title() ) ); + comments_popup_link( + sprintf( + wp_kses( + /* translators: %s: post title */ + __( 'Leave a Comment on %s', '_s' ), + array( + 'span' => array( + 'class' => array(), + ), + ) + ), + get_the_title() + ) + ); echo ''; } diff --git a/template-parts/content-none.php b/template-parts/content-none.php index d1328eb6..50c2c21b 100644 --- a/template-parts/content-none.php +++ b/template-parts/content-none.php @@ -19,8 +19,18 @@ if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>

Get started here.', '_s' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) ); + printf( + wp_kses( + /* translators: 1: link to WP admin new post page. */ + __( 'Ready to publish your first post? Get started here.', '_s' ), + array( + 'a' => array( + 'href' => array(), + ), + ) + ), + esc_url( admin_url( 'post-new.php' ) ) + ); ?>

diff --git a/template-parts/content.php b/template-parts/content.php index a61abaf5..68b84689 100644 --- a/template-parts/content.php +++ b/template-parts/content.php @@ -29,8 +29,15 @@
→', '_s' ), array( 'span' => array( 'class' => array() ) ) ), + wp_kses( + /* translators: %s: Name of current post. */ + __( 'Continue reading %s ', '_s' ), + array( + 'span' => array( + 'class' => array(), + ), + ) + ), the_title( '"', '"', false ) ) );