当前浏览:首页 / WordPress函数 / the_privacy_policy_link()

the_privacy_policy_link( string $before = '', string $after = '' )

显示带有格式的隐私策略链接(如果适用)

linkmore...

policy 隐私政策

themore...


参数

$before

(string) (可选) 显示在隐私策略链接之前。

默认值: ''

$after

(string) (可选) 显示在隐私策略链接之后。

默认值: ''



源码

查看源码 官方文档


更新日志

版本描述
4.9.6开始引入

使用示例

  • 示例1

    主题集成的示例代码,带有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>