Diff: STRATO-apps/wordpress_03/app/wp-includes/theme-compat/footer.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
/**
3
+
* @package WordPress
4
+
* @subpackage Theme_Compat
5
+
* @deprecated 3.0.0
6
+
*
7
+
* This file is here for backward compatibility with old themes and will be removed in a future version
8
+
*/
9
+
_deprecated_file(
10
+
/* translators: %s: Template name. */
11
+
sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
12
+
'3.0.0',
13
+
null,
14
+
/* translators: %s: Template name. */
15
+
sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
16
+
);
17
+
?>
18
+
19
+
<hr />
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. -->
22
+
<p>
23
+
<?php
24
+
printf(
25
+
/* translators: 1: Site name, 2: WordPress */
26
+
__( '%1$s is proudly powered by %2$s' ),
27
+
get_bloginfo( 'name' ),
28
+
'<a href="https://wordpress.org/">WordPress</a>'
29
+
);
30
+
?>
31
+
</p>
32
+
</div>
33
+
</div>
34
+
35
+
<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/ -->
36
+
<?php /* "Just what do you think you're doing Dave?" */ ?>
37
+
38
+
<?php wp_footer(); ?>
39
+
</body>
40
+
</html>
41
+