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
4368       * Filters the privacy policy link.
4369       *
4370       * @since 4.9.6
4371       *
4372       * @param string $link               The privacy policy link. Empty string if it
4373       *                                   doesn't exist.
4374       * @param string $privacy_policy_url The URL of the privacy policy. Empty string
4375       *                                   if it doesn't exist.
4376       */
4377      $link = apply_filters( 'the_privacy_policy_link', $link, $privacy_policy_url );
4378
4379      if ( $link ) {
4380           return $before . $link . $after;
4381      }
4382
4383      return '';
4384 }
4385