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
1449      // TODO: Add key #2 with longer expiration.
1450
1451      /**
1452       * Filters the valid signing keys used to verify the contents of files.
1453       *
1454       * @since 5.2.0
1455       *
1456       * @param string[] $trusted_keys The trusted keys that may sign packages.
1457       */
1458      return apply_filters( 'wp_trusted_keys', $trusted_keys );
1459 }
1460
1461 /**
1462  * Unzips a specified ZIP file to a location on the filesystem via the WordPress
1463  * Filesystem Abstraction.
1464  *
1465  * Assumes that WP_Filesystem() has already been called and set up. Does not extract
1466  * a root-level __MACOSX directory, if present.
1467  *