Ticket #7348: 7348.diff
File 7348.diff, 1.7 KB (added by , 17 years ago) |
---|
-
wp-includes/query.php
1525 1525 1526 1526 if ( $this->current_post == 0 ) // loop has just started 1527 1527 do_action('loop_start'); 1528 1529 do_action('loop_postcount_' . $this->current_post); 1528 1530 } 1529 1531 1530 1532 function have_posts() { -
wp-content/themes/default/footer.php
1 1 2 2 <hr /> 3 3 <div id="footer"> 4 <?php do_action('wp_footer_start'); ?> 4 5 <!-- 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. --> 5 6 <p> 6 7 <?php bloginfo('name'); ?> is proudly powered by -
wp-content/themes/default/index.php
1 1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="narrowcolumn"> 4 4 <?php do_action('theme_above_content'); ?> 5 5 <?php if (have_posts()) : ?> 6 6 7 7 <?php while (have_posts()) : the_post(); ?> -
wp-content/themes/default/header.php
35 35 <div class="description"><?php bloginfo('description'); ?></div> 36 36 </div> 37 37 </div> 38 <?php do_action('theme_under_header'); ?> 38 39 <hr />