Update translator comment

This commit is contained in:
IanDelMar 2020-04-22 07:56:54 +02:00
parent 860d8c123a
commit c4eeba9d3a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ defined( 'ABSPATH' ) || exit;
$kses = array( 'a' => array( 'href' => array() ) ); $kses = array( 'a' => array( 'href' => array() ) );
printf( printf(
/* translators: URL to create a new post. */ /* translators: 1: Link to WP admin new post page. */
'<p>' . wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'understrap' ), $kses ) . '</p>', '<p>' . wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'understrap' ), $kses ) . '</p>',
esc_url( admin_url( 'post-new.php' ) ) esc_url( admin_url( 'post-new.php' ) )
); );