WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
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> |