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
4704       * Filters the privacy policy link.
4705       *
4706       * @since 4.9.6
4707       *
4708       * @param string $link               The privacy policy link. Empty string if it
4709       *                                   doesn't exist.
4710       * @param string $privacy_policy_url The URL of the privacy policy. Empty string
4711       *                                   if it doesn't exist.
4712       */
4713      $link = apply_filters( 'the_privacy_policy_link', $link, $privacy_policy_url );
4714
4715      if ( $link ) {
4716           return $before . $link . $after;
4717      }
4718
4719      return '';
4720 }
4721
4722 /**