Make WordPress Core

Ticket #1147: wp_footer.patch

File wp_footer.patch, 1.2 KB (added by anonymousbugger, 21 years ago)
  • wp-includes/functions.php

     
    11361136        do_action('wp_head');
    11371137}
    11381138
     1139function wp_footer() {
     1140        do_action('wp_footer');
     1141}
     1142
    11391143function is_single ($post = '') {
    11401144        global $wp_query;
    11411145
  • wp-content/themes/classic/footer.php

     
    77
    88</div>
    99
    10 <?php do_action('wp_footer'); ?>
     10<?php wp_footer(); ?>
    1111</body>
    1212</html>
     13 No newline at end of file
  • wp-content/themes/default/footer.php

     
    1414<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
    1515<?php /* "Just what do you think you're doing Dave?" */ ?>
    1616
    17                 <?php do_action('wp_footer'); ?>
     17                <?php wp_footer(); ?>
    1818
    1919</body>
    2020</html>
     21 No newline at end of file