Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyten/loop.php

    r45932 r47122  
    2020?>
    2121
    22 <?php /* Display navigation to next/previous pages when applicable */ ?>
     22<?php // Display navigation to next/previous pages when applicable. ?>
    2323<?php if ( $wp_query->max_num_pages > 1 ) : ?>
    2424    <div id="nav-above" class="navigation">
     
    9595                    ?>
    9696                            </em></p>
    97                 <?php endif; // end twentyten_get_gallery_images() check ?>
     97                <?php endif; // End twentyten_get_gallery_images() check. ?>
    9898                        <?php the_excerpt(); ?>
    9999<?php endif; ?>
     
    198198    <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
    199199
    200 <?php endwhile; // End the loop. Whew. ?>
    201 
    202 <?php /* Display navigation to next/previous pages when applicable */ ?>
     200<?php endwhile; // End of the loop. Whew. ?>
     201
     202<?php // Display navigation to next/previous pages when applicable. ?>
    203203<?php if ( $wp_query->max_num_pages > 1 ) : ?>
    204204                <div id="nav-below" class="navigation">
Note: See TracChangeset for help on using the changeset viewer.