wp/wp-includes/theme-compat/footer.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
child 21 48c4eec2b7e6
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
     5  * @deprecated 3.0.0
     5  * @deprecated 3.0.0
     6  *
     6  *
     7  * This file is here for backward compatibility with old themes and will be removed in a future version
     7  * This file is here for backward compatibility with old themes and will be removed in a future version
     8  */
     8  */
     9 _deprecated_file(
     9 _deprecated_file(
    10 	/* translators: %s: template name */
    10 	/* translators: %s: Template name. */
    11 	sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
    11 	sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
    12 	'3.0.0',
    12 	'3.0.0',
    13 	null,
    13 	null,
    14 	/* translators: %s: template name */
    14 	/* translators: %s: Template name. */
    15 	sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
    15 	sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
    16 );
    16 );
    17 ?>
    17 ?>
    18 
    18 
    19 <hr />
    19 <hr />
    20 <div id="footer" role="contentinfo">
    20 <div id="footer" role="contentinfo">
    21 <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
    21 <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
    22 	<p>
    22 	<p>
    23 		<?php
    23 		<?php
    24 		printf(
    24 		printf(
    25 			/* translators: 1: blog name, 2: WordPress */
    25 			/* translators: 1: Blog name, 2: WordPress */
    26 			__( '%1$s is proudly powered by %2$s' ),
    26 			__( '%1$s is proudly powered by %2$s' ),
    27 			get_bloginfo( 'name' ),
    27 			get_bloginfo( 'name' ),
    28 			'<a href="https://wordpress.org/">WordPress</a>'
    28 			'<a href="https://wordpress.org/">WordPress</a>'
    29 		);
    29 		);
    30 		?>
    30 		?>
    31 	</p>
    31 	</p>
    32 </div>
    32 </div>
    33 </div>
    33 </div>
    34 
    34 
    35 <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
    35 <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/ -->
    36 <?php /* "Just what do you think you're doing Dave?" */ ?>
    36 <?php /* "Just what do you think you're doing Dave?" */ ?>
    37 
    37 
    38 		<?php wp_footer(); ?>
    38 		<?php wp_footer(); ?>
    39 </body>
    39 </body>
    40 </html>
    40 </html>