You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First pass of compatibility code for old themes which relied on using templates from the default theme without expressly identifying it as the parent theme.
Fixes #12425 and #13009.
The fallback to these template files is now depreceated and will be removed in a future version.
git-svn-id: https://develop.svn.wordpress.org/trunk@14365 602fd350-edb4-49c9-b593-d223f7449a82
<p><a href="<?phpechoget_post_comments_feed_link($post->ID); ?>"><abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.</a></p>
36
+
37
+
<?phpif ( pings_open() ) { ?>
38
+
<p>The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em><?phptrackback_url() ?></em></p>
39
+
<?php } ?>
40
+
41
+
<?php
42
+
// this line is WordPress' motor, do not delete it.
43
+
$commenter = wp_get_current_commenter();
44
+
extract($commenter);
45
+
$comments = get_approved_comments($id);
46
+
$post = get_post($id);
47
+
if ( post_password_required($post) ) { // and it doesn't match the cookie
<p>Logged in as <a href="<?phpechoget_option('siteurl'); ?>/wp-admin/profile.php"><?phpecho$user_identity; ?></a>. <a href="<?phpechowp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out »</a></p>
<p>Sorry, the comment form is closed at this time.</p>
104
+
<?php }
105
+
} // end password check
106
+
?>
107
+
108
+
<div><strong><a href="javascript:window.close()">Close this window.</a></strong></div>
109
+
110
+
<?php// if you delete this the sky will fall on your head
111
+
endwhile; //endwhile have_posts()
112
+
else: //have_posts()
113
+
?>
114
+
<p>Sorry, no posts matched your criteria.</p>
115
+
<?phpendif; ?>
116
+
<!-- // this is just the end of the motor - don't touch that line either :) -->
117
+
<?php//} ?>
118
+
<p class="credit"><?phptimer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>WordPress</strong></a></cite></p>
119
+
<?php// Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?>
<p>Logged in as <a href="<?phpechoget_option('siteurl'); ?>/wp-admin/profile.php"><?phpecho$user_identity; ?></a>. <a href="<?phpechowp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out »</a></p>
* This file is here for Backwards compatibility with old themes and will be removed in a future version
8
+
*
9
+
*/
10
+
_deprecated_file( 'Theme without ' . basename(__FILE__), '3.0', null, 'Please include a footer.php template in your theme.');
11
+
?>
12
+
13
+
<hr />
14
+
<div id="footer" role="contentinfo">
15
+
<!-- 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. -->
0 commit comments