the_privacy_policy_link хук-фильтр . WP 4.9.6
Filters the privacy policy link.
Использование
add_filter( 'the_privacy_policy_link', 'filter_function_name_3897', 10, 2 ); function filter_function_name_3897( $link, $privacy_policy_url ){ // filter... return $link; }
- $link(строка)
- The privacy policy link. Empty string if it doesn't exist.
- $privacy_policy_url(строка)
- The URL of the privacy policy. Empty string if it doesn't exist.
Список изменений
С версии 4.9.6 | Введена. |
Где вызывается хук
the_privacy_policy_link
wp-includes/link-template.php 4492
$link = apply_filters( 'the_privacy_policy_link', $link, $privacy_policy_url );