Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: twentyeleven_credits

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
17                <?php
18                     /* A sidebar in the footer? Yep. You can can customize
19                      * your footer with three columns of widgets.
20                      */
21                     if ( ! is_404() )
22                          get_sidebar( 'footer' );
23                ?>
24
25                <div id="site-generator">
26                     <?php do_action( 'twentyeleven_credits' ); ?>
27                     <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
28                </div>
29      </footer><!-- #colophon -->
30 </div><!-- #page -->
31
32 <?php wp_footer(); ?>
33
34 </body>
35 </html>