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 |
|---|---|
| 1735 | if ( 'use_id' != $lookup ) |
| 1736 | $object = call_user_func( $lookup, $object ); |
| 1737 | return sprintf( $trans[$verb][$noun][0], wp_specialchars($object) ); |
| 1738 | } else { |
| 1739 | return $trans[$verb][$noun][0]; |
| 1740 | } |
| 1741 | } |
| 1742 | } |
| 1743 | |
| 1744 | return apply_filters( 'explain_nonce_' . $verb . '-' . $noun, __( 'Are you sure you want to do this?' ), $matches[4] ); |
| 1745 | } |
| 1746 | |
| 1747 | |
| 1748 | function wp_nonce_ays( $action ) { |
| 1749 | $title = __( 'WordPress Failure Notice' ); |
| 1750 | $html = wp_specialchars( wp_explain_nonce( $action ) ) . '</p>'; |
| 1751 | if ( wp_get_referer() ) |
| 1752 | $html .= "<p><a href='" . remove_query_arg( 'updated', clean_url( wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>"; |
| 1753 | wp_die( $html, $title); |