fixing some escaping problems
This commit is contained in:
parent
c94d17603a
commit
7c4f217ca9
|
@ -26,9 +26,9 @@ $container = get_theme_mod( 'understrap_container_type' );
|
||||||
<div class="site-info">
|
<div class="site-info">
|
||||||
<a href="<?php echo esc_url( __( 'http://wordpress.org/','understrap' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'understrap' ),'WordPress' ); ?></a>
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/','understrap' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'understrap' ),'WordPress' ); ?></a>
|
||||||
<span class="sep"> | </span>
|
<span class="sep"> | </span>
|
||||||
<?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( 'Name' ),
|
<?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( esc_html__( 'Name' ) ),
|
||||||
'<a href="http://understrap.com/">understrap.com</a>' ); ?>
|
'<a href="http://understrap.com/">understrap.com</a>' ); ?>
|
||||||
(<?php printf( esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( 'Version' ) ); ?>)
|
(<?php printf( esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( esc_html__( 'Version' ) ) ); ?>)
|
||||||
</div><!-- .site-info -->
|
</div><!-- .site-info -->
|
||||||
|
|
||||||
</footer><!-- #colophon -->
|
</footer><!-- #colophon -->
|
||||||
|
|
Reference in New Issue