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 |
|---|---|
| 1654 | * |
| 1655 | * There are more fine-grained filters and controls for selective disabling. |
| 1656 | * This filter parallels the AUTOMATIC_UPDATER_DISABLED constant in name. |
| 1657 | * |
| 1658 | * This also disables update notification emails. That may change in the future. |
| 1659 | * |
| 1660 | * @since 3.7.0 |
| 1661 | * @param bool $disabled Whether the updater should be disabled. |
| 1662 | */ |
| 1663 | return apply_filters( 'automatic_updater_disabled', $disabled ); |
| 1664 | } |
| 1665 | |
| 1666 | /** |
| 1667 | * Check for version control checkouts. |
| 1668 | * |
| 1669 | * Checks for Subversion, Git, Mercurial, and Bazaar. It recursively looks up the |
| 1670 | * filesystem to the top of the drive, erring on the side of detecting a VCS |
| 1671 | * checkout somewhere. |
| 1672 | * |