Fix indentation
This commit is contained in:
parent
b1f541fcfc
commit
8ecfeb4436
|
@ -32,15 +32,19 @@ if ( ! function_exists( 'understrap_add_site_info' ) ) {
|
||||||
esc_url( __( 'http://wordpress.org/', 'understrap' ) ),
|
esc_url( __( 'http://wordpress.org/', 'understrap' ) ),
|
||||||
sprintf(
|
sprintf(
|
||||||
/* translators:*/
|
/* translators:*/
|
||||||
esc_html__( 'Proudly powered by %s', 'understrap' ), 'WordPress'
|
esc_html__( 'Proudly powered by %s', 'understrap' ),
|
||||||
|
'WordPress'
|
||||||
),
|
),
|
||||||
sprintf( // WPCS: XSS ok.
|
sprintf( // WPCS: XSS ok.
|
||||||
/* translators:*/
|
/* translators:*/
|
||||||
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( 'Name' ), '<a href="' . esc_url( __( 'http://understrap.com', 'understrap' ) ) . '">understrap.com</a>'
|
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ),
|
||||||
|
$the_theme->get( 'Name' ),
|
||||||
|
'<a href="' . esc_url( __( 'http://understrap.com', 'understrap' ) ) . '">understrap.com</a>'
|
||||||
),
|
),
|
||||||
sprintf( // WPCS: XSS ok.
|
sprintf( // WPCS: XSS ok.
|
||||||
/* translators:*/
|
/* translators:*/
|
||||||
esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( 'Version' )
|
esc_html__( 'Version: %1$s', 'understrap' ),
|
||||||
|
$the_theme->get( 'Version' )
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Reference in New Issue