Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_trusted_keys

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1354      // TODO: Add key #2 with longer expiration.
1355
1356      /**
1357       * Filter the valid Signing keys used to verify the contents of files.
1358       *
1359       * @since 5.2.0
1360       *
1361       * @param array $trusted_keys The trusted keys that may sign packages.
1362       */
1363      return apply_filters( 'wp_trusted_keys', $trusted_keys );
1364 }
1365
1366 /**
1367  * Unzips a specified ZIP file to a location on the filesystem via the WordPress
1368  * Filesystem Abstraction.
1369  *
1370  * Assumes that WP_Filesystem() has already been called and set up. Does not extract
1371  * a root-level __MACOSX directory, if present.
1372  *