Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_privacy_policy_link

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
4455       * Filters the privacy policy link.
4456       *
4457       * @since 4.9.6
4458       *
4459       * @param string $link               The privacy policy link. Empty string if it
4460       *                                   doesn't exist.
4461       * @param string $privacy_policy_url The URL of the privacy policy. Empty string
4462       *                                   if it doesn't exist.
4463       */
4464      $link = apply_filters( 'the_privacy_policy_link', $link, $privacy_policy_url );
4465
4466      if ( $link ) {
4467           return $before . $link . $after;
4468      }
4469
4470      return '';
4471 }
4472