wpseek.com
WordPress开发者和主题制作者的搜索引擎



the_privacy_policy_link › WordPress Function

Since4.9.6
已弃用n/a
the_privacy_policy_link ( $before = '', $after = '' )
参数: (2)
  • (string) $before Optional. Display before privacy policy link. Default empty.
    Required: No
    默认: (empty)
  • (string) $after Optional. Display after privacy policy link. Default empty.
    Required: No
    默认: (empty)
定义在:
文档:

Displays the privacy policy link with formatting, when applicable.



源码

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