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 |
---|---|
406 | /* translators: %s: Name of the constant used. */ |
407 | __( 'WordPress development updates are blocked by the %s constant.' ), |
408 | '<code>WP_AUTO_UPDATE_CORE</code>' |
409 | ), |
410 | 'severity' => 'fail', |
411 | ); |
412 | } |
413 |
|
414 | /** This filter is documented in wp-admin/includes/class-core-upgrader.php */ |
415 | if ( ! apply_filters( 'allow_dev_auto_core_updates', $wp_version ) ) { |
416 | return array( |
417 | 'description' => sprintf( |
418 | /* translators: %s: Name of the filter used. */ |
419 | __( 'WordPress development updates are blocked by the %s filter.' ), |
420 | '<code>allow_dev_auto_core_updates</code>' |
421 | ), |
422 | 'severity' => 'fail', |
423 | ); |
424 | } |