mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-08 03:40:20 +01:00
dc35c19f60
This changes components directory to be called template-parts. Changes reflected in all files that call those sections. Props bronsonquick, dd32 Fixes #38375 Built from https://develop.svn.wordpress.org/trunk@38875 git-svn-id: http://core.svn.wordpress.org/trunk@38818 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
357 B
PHP
15 lines
357 B
PHP
<?php
|
|
/**
|
|
* Displays footer site info
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Seventeen
|
|
* @since 1.0
|
|
* @version 1.0
|
|
*/
|
|
|
|
?>
|
|
<div class="site-info">
|
|
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' ); ?></a>
|
|
</div><!-- .site-info -->
|