placing translator comments in php
This commit is contained in:
parent
fde1960223
commit
c4e5f5c386
12
footer.php
12
footer.php
|
@ -24,14 +24,18 @@ $container = get_theme_mod( 'understrap_container_type' );
|
||||||
<footer class="site-footer" id="colophon">
|
<footer class="site-footer" id="colophon">
|
||||||
|
|
||||||
<div class="site-info">
|
<div class="site-info">
|
||||||
/* translators:*/
|
|
||||||
<a href="<?php echo esc_url( __( 'http://wordpress.org/','understrap' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'understrap' ),'WordPress' ); ?></a>
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/','understrap' ) ); ?>"><?php printf(
|
||||||
|
/* translators:*/
|
||||||
|
esc_html__( 'Proudly powered by %s', 'understrap' ),'WordPress' ); ?></a>
|
||||||
<span class="sep"> | </span>
|
<span class="sep"> | </span>
|
||||||
/* translators:*/
|
|
||||||
<?php printf( // WPCS: XSS ok.
|
<?php printf( // WPCS: XSS ok.
|
||||||
|
/* translators:*/
|
||||||
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( 'Name' ), '<a href="http://understrap.com/">understrap.com</a>' ); ?>
|
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( 'Name' ), '<a href="http://understrap.com/">understrap.com</a>' ); ?>
|
||||||
/* translators:*/
|
|
||||||
(<?php printf( // WPCS: XSS ok.
|
(<?php printf( // WPCS: XSS ok.
|
||||||
|
/* translators:*/
|
||||||
esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( 'Version' ) ); ?>)
|
esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( 'Version' ) ); ?>)
|
||||||
</div><!-- .site-info -->
|
</div><!-- .site-info -->
|
||||||
|
|
||||||
|
|
Reference in New Issue