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 |
|---|---|
| 23 | ?> |
| 24 | |
| 25 | <div id="site-info"> |
| 26 | <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> |
| 27 | <?php bloginfo( 'name' ); ?> |
| 28 | </a> |
| 29 | </div><!-- #site-info --> |
| 30 | |
| 31 | <div id="site-generator"> |
| 32 | <?php do_action( 'twentyten_credits' ); ?> |
| 33 | <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a> |
| 34 | </div><!-- #site-generator --> |
| 35 | |
| 36 | </div><!-- #colophon --> |
| 37 | </div><!-- #footer --> |
| 38 | |
| 39 | </div><!-- #wrapper --> |
| 40 | |
| 41 | <?php |