the_privacy_policy_link() – Displays the privacy policy link with formatting, when applicable.
You appear to be a bot. Output may be restricted
Description
Displays the privacy policy link with formatting, when applicable.
Usage
the_privacy_policy_link( $before, $after );
Parameters
- $before
- ( string ) optional – Optional. Display before privacy policy link. Default empty.
- $after
- ( string ) optional – Optional. Display after privacy policy link. Default empty.
Returns
void
Source
File name: wordpress/wp-includes/link-template.php
Lines:
1 to 3 of 3
function the_privacy_policy_link( $before = '', $after = '' ) { echo get_the_privacy_policy_link( $before, $after ); }