参数
- $before
-
(string) (可选) 显示在隐私策略链接之前。
默认值: ''
- $after
-
(string) (可选) 显示在隐私策略链接之后。
默认值: ''
源码
更新日志
版本 | 描述 |
---|---|
4.9.6 | 开始引入 |
使用示例
主题集成的示例代码,带有
function_exists()
测试,以避免在以前的WordPress版本上出现致命错误。<?php if ( function_exists( 'the_privacy_policy_link' ) ) { the_privacy_policy_link( '<div class="privacy-policy-link-wrapper">', '</div>' ); } ?>
HTML输出示例(将动态生成固定链接和锚点):
<div class="privacy-policy-link-wrapper"> <a class="privacy-policy-link" href="https://example.com/privacy-policy/">Privacy Policy</a> </div>