wpseek.com
A WordPress-centric search engine for devs and theme authors



the_privacy_policy_link › WordPress Function

Since4.9.6
Deprecatedn/a
the_privacy_policy_link ( $before = '', $after = '' )
Parameters: (2)
  • (string) $before Optional. Display before privacy policy link. Default empty.
    Required: No
    Default: (empty)
  • (string) $after Optional. Display after privacy policy link. Default empty.
    Required: No
    Default: (empty)
Defined at:
Codex:

Displays the privacy policy link with formatting, when applicable.



Source

function the_privacy_policy_link( $before = '', $after = '' ) {
	echo get_the_privacy_policy_link( $before, $after );
}