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
1517      // TODO: Add key #2 with longer expiration.
1518
1519      /**
1520       * Filters the valid signing keys used to verify the contents of files.
1521       *
1522       * @since 5.2.0
1523       *
1524       * @param string[] $trusted_keys The trusted keys that may sign packages.
1525       */
1526      return apply_filters( 'wp_trusted_keys', $trusted_keys );
1527 }
1528
1529 /**
1530  * Unzips a specified ZIP file to a location on the filesystem via the WordPress
1531  * Filesystem Abstraction.
1532  *
1533  * Assumes that WP_Filesystem() has already been called and set up. Does not extract
1534  * a root-level __MACOSX directory, if present.
1535  *