the_privacy_policy_link

The timeline below displays how wordpress function the_privacy_policy_link has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: .10

/**
 * Displays the privacy policy link with formatting, when applicable.
 *
 * @since 4.9.6
 *
 * @param string $before Optional. Display before privacy policy link. Default empty.
 * @param string $after  Optional. Display after privacy policy link. Default empty.
 */
function the_privacy_policy_link($before = '', $after = '')
{
    echo get_the_privacy_policy_link($before, $after);
}