the_privacy_policy_link
Filters the privacy policy link.
Usage
add_filter( 'the_privacy_policy_link', 'wp_kama_the_privacy_policy_link_filter', 10, 2 );
/**
* Function for `the_privacy_policy_link` filter-hook.
*
* @param string $link The privacy policy link. Empty string if it doesn't exist.
* @param string $privacy_policy_url The URL of the privacy policy. Empty string if it doesn't exist.
*
* @return string
*/
function wp_kama_the_privacy_policy_link_filter( $link, $privacy_policy_url ){
// filter...
return $link;
}
- $link(string)
- The privacy policy link. Empty string if it doesn't exist.
- $privacy_policy_url(string)
- The URL of the privacy policy. Empty string if it doesn't exist.
Changelog
| Since 4.9.6 | Introduced. |
Where the hook is called
the_privacy_policy_link
wp-includes/link-template.php 4786
$link = apply_filters( 'the_privacy_policy_link', $link, $privacy_policy_url );