二维码设置
注意事项:换行符号是<br>,如:请扫码关注微信二维码<br>发送“验证码”获取密码。
短代码引入文章示例:[protected] 这是隐藏的内容,只有验证密码后才能看到。 [/protected]
本插件由大神博客ds17.cn原创,务必保留所有权利,删除必究。
get_option('content_protect_password'),
), $atts
);
if (isset($_POST['content_protect_password']) &&$_POST['content_protect_password'] == $atts['password']) {
setcookie('content_protect_verified', true, time() + 3600, COOKIEPATH, COOKIE_DOMAIN);
}
if (isset($_COOKIE['content_protect_verified']) &&$_COOKIE['content_protect_verified']) {
return do_shortcode($content);
} else {
$prompt = get_option('content_protect_prompt', '请输入密码查看内容。');
$image = get_option('content_protect_image');
$output = '
';
return $output;
}
}
add_shortcode('protected', 'content_protect_shortcode');