footer-info.php 673 B

1234567891011121314151617
  1. <div class="site-info">
  2. <?php $blog_info = get_bloginfo( 'name' ); ?>
  3. <?php if ( ! empty( $blog_info ) ) : ?>
  4. <a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a><span class="comma">,</span>
  5. <?php endif; ?>
  6. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'seedlet' ) ); ?>" class="imprint">
  7. <?php
  8. /* translators: %s: WordPress. */
  9. printf( __( 'Proudly powered by %s.', 'seedlet' ), 'WordPress' );
  10. ?>
  11. </a>
  12. <?php
  13. if ( function_exists( 'the_privacy_policy_link' ) ) {
  14. the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
  15. }
  16. ?>
  17. </div><!-- .site-info -->