diff --git a/inc/template-tags.php b/inc/template-tags.php index 4c5c6cf..efdb9a9 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -84,8 +84,15 @@ function _s_entry_footer() { edit_post_link( sprintf( - /* translators: %s: Name of current post. Only visible to screen readers */ - wp_kses( __( 'Edit %s', '_s' ), array( 'span' => array( 'class' => array() ) ) ), + wp_kses( + /* translators: %s: Name of current post. Only visible to screen readers */ + __( 'Edit %s', '_s' ), + array( + 'span' => array( + 'class' => array(), + ), + ) + ), get_the_title() ), '', diff --git a/template-parts/content-page.php b/template-parts/content-page.php index 4261481..065a664 100644 --- a/template-parts/content-page.php +++ b/template-parts/content-page.php @@ -30,8 +30,15 @@ %s', '_s' ), array( 'span' => array( 'class' => array() ) ) ), + wp_kses( + /* translators: %s: Name of current post. Only visible to screen readers */ + __( 'Edit %s', '_s' ), + array( + 'span' => array( + 'class' => array(), + ), + ) + ), get_the_title() ), '',