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
1394      // TODO: Add key #2 with longer expiration.
1395
1396      /**
1397       * Filter the valid signing keys used to verify the contents of files.
1398       *
1399       * @since 5.2.0
1400       *
1401       * @param string[] $trusted_keys The trusted keys that may sign packages.
1402       */
1403      return apply_filters( 'wp_trusted_keys', $trusted_keys );
1404 }
1405
1406 /**
1407  * Unzips a specified ZIP file to a location on the filesystem via the WordPress
1408  * Filesystem Abstraction.
1409  *
1410  * Assumes that WP_Filesystem() has already been called and set up. Does not extract
1411  * a root-level __MACOSX directory, if present.
1412  *