privacy_on_link_title WordPress Filter Hook
The privacy_on_link_title hook allows you to filter the title of a link before it is displayed on the front end of a WordPress site. This can be used to remove sensitive information from being displayed, or to add a custom message that will be shown instead.
apply_filters( 'privacy_on_link_title', string $title ) #
Filters the link title attribute for the ‘Search engines discouraged’ message displayed in the ‘At a Glance’ dashboard widget.
Description
Prior to 3.8.0, the widget was named ‘Right Now’.
Parameters
- $title
(string)Default attribute text.
Source
Changelog
Version | Description |
---|---|
4.5.0 | The default for $title was updated to an empty string. |
3.0.0 | Introduced. |