- Timestamp:
- 11/02/2018 11:52:16 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/footer.php
r43842 r43860 19 19 <?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?> 20 20 <div class="site-info"> 21 <?php if ( ! empty( get_bloginfo( 'name' ) ) ) : ?> 21 <?php $blog_info = get_bloginfo( 'name' ); ?> 22 <?php if ( ! empty( $blog_info ) ) : ?> 22 23 <a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>, 23 24 <?php endif; ?> 24 25 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentynineteen' ) ); ?>" class="imprint"> 25 <?php printf( __( 'Proudly powered by %s', 'twentynineteen' ), 'WordPress' ); ?>. 26 <?php 27 /* translators: %s: WordPress. */ 28 printf( esc_html__( 'Proudly powered by %s.', 'twentynineteen' ), 'WordPress' ); 29 ?> 26 30 </a> 27 31 <?php
Note: See TracChangeset
for help on using the changeset viewer.