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
4475       * Filters the privacy policy link.
4476       *
4477       * @since 4.9.6
4478       *
4479       * @param string $link               The privacy policy link. Empty string if it
4480       *                                   doesn't exist.
4481       * @param string $privacy_policy_url The URL of the privacy policy. Empty string
4482       *                                   if it doesn't exist.
4483       */
4484      $link = apply_filters( 'the_privacy_policy_link', $link, $privacy_policy_url );
4485
4486      if ( $link ) {
4487           return $before . $link . $after;
4488      }
4489
4490      return '';
4491 }
4492