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
1427      // TODO: Add key #2 with longer expiration.
1428
1429      /**
1430       * Filters the valid signing keys used to verify the contents of files.
1431       *
1432       * @since 5.2.0
1433       *
1434       * @param string[] $trusted_keys The trusted keys that may sign packages.
1435       */
1436      return apply_filters( 'wp_trusted_keys', $trusted_keys );
1437 }
1438
1439 /**
1440  * Unzips a specified ZIP file to a location on the filesystem via the WordPress
1441  * Filesystem Abstraction.
1442  *
1443  * Assumes that WP_Filesystem() has already been called and set up. Does not extract
1444  * a root-level __MACOSX directory, if present.
1445  *