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 |
---|---|
243 | /** |
244 | * Fires in the JavaScript row template for each custom column in the Application Passwords list table. |
245 | * |
246 | * Custom columns are registered using the {@see 'manage_application-passwords-user_columns'} filter. |
247 | * |
248 | * @since 5.6.0 |
249 | * |
250 | * @param string $column_name Name of the custom column. |
251 | */ |
252 | do_action( "manage_{$this->screen->id}_custom_column_js_template", $column_name ); |
253 | break; |
254 | } |
255 |
|
256 | if ( $is_primary ) { |
257 | echo '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>'; |
258 | } |
259 |
|
260 | echo '</td>'; |
261 | } |