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 |
---|---|
77 | if ( is_multisite() ) { |
78 | $login_header_url = network_home_url(); |
79 | $login_header_title = $current_site->site_name; |
80 | } else { |
81 | $login_header_url = __( 'http://wordpress.org/' ); |
82 | $login_header_title = __( 'Powered by WordPress' ); |
83 | } |
84 |
|
85 | $login_header_url = apply_filters( 'login_headerurl', $login_header_url ); |
86 | $login_header_title = apply_filters( 'login_headertitle', $login_header_title ); |
87 |
|
88 | // Don't allow interim logins to navigate away from the page. |
89 | if ( $interim_login ) |
90 | $login_header_url = '#'; |
91 |
|
92 | ?> |
93 | </head> |
94 | <body class="login<?php if ( wp_is_mobile() ) echo ' mobile'; ?>"> |
95 | <div id="login"> |