Make WordPress Core


Ignore:
Timestamp:
09/25/2013 05:03:34 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Ten: update code comments to reflect WP inline docs standards. Props DrewAPicture, closes #25256.

File:
1 edited

Legend:

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

    r22214 r25627  
    11<?php
    22/**
    3  * The template for displaying the footer.
     3 * Template for displaying the footer
    44 *
    55 * Contains the closing of the id=main div and all content
     
    1717
    1818<?php
    19     /* A sidebar in the footer? Yep. You can can customize
     19    /**
     20     * A sidebar in the footer? Yep. You can can customize
    2021     * your footer with four columns of widgets.
    2122     */
     
    3031
    3132            <div id="site-generator">
    32                 <?php do_action( 'twentyten_credits' ); ?>
     33                <?php
     34                /**
     35                 * Fires before the Twenty Ten credits in the footer.
     36                 *
     37                 * @since Twenty Ten 1.0
     38                 */
     39                do_action( 'twentyten_credits' ); ?>
    3340                <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
    3441            </div><!-- #site-generator -->
     
    4047
    4148<?php
    42     /* Always have wp_footer() just before the closing </body>
     49    /**
     50     * Always have wp_footer() just before the closing </body>
    4351     * tag of your theme, or you will break many plugins, which
    4452     * generally use this hook to reference JavaScript files.
Note: See TracChangeset for help on using the changeset viewer.