lucas107

偶然看到一个动态图的WP站,所有的车牌必须输入密码才可见。觉得蛮好玩的,就搜寻网络找到此功能的代码,这里就是直接分享给各位站长朋友!相信一些类型站的配合这个功能绝对是一款神器!比如你可以把你要一些关键内容隐藏掉,如下载地址之类的!然后设置好查看密码。然后把查看密码丢到公众号上,轻轻松松做到吸粉!但是这个功能还是有消耗服务器资源的!大家自己斟酌使用!

网上找到的样式代码有一个CSS溢出的问题,现在已经给大家修复了!下面先看功能效果图吧!

实现方法:

将下面的代码放入主题的函数模板(functions.php)

/* Name: 部分内容输入密码可见(短代码)
 * 屌丝青年网(www.dsqnw.com)
 */
function e_secret($atts, $content=null){
    extract(shortcode_atts(array(\'key\'=>null), $atts));
    if(isset($_POST[\'e_secret_key\']) && $_POST[\'e_secret_key\']==$key){
        return \'
<div class="e-secret">\'.$content.\'</div>
\';
    }
    else{
        return \'
<form class="e-secret" action="\'.get_permalink().\'" method="post" name="e-secret"><label>输入密码查看加密内容:</label><input type="password" name="e_secret_key" class="euc-y-i" maxlength="50"><input type="submit" class="euc-y-s" value="确定">
<div class="euc-clear"></div>
</form>
\';
    }
}
add_shortcode(\'secret\',\'e_secret\');

将下面的样式代码放入自己的主题CSS中(style.css)

/*e-secret*/
.e-secret {
    margin: 20px 0;
    padding: 20px;
    background: #f8f8f8;
    overflow: auto;
}
.e-secret input.euc-y-i[type="password"] {
    float: left;
    background: #fff;
    width: 100%;
    line-height: 36px;
    margin-top: 5px;
    border-radius: 3px;
}
.e-secret input.euc-y-s[type="submit"] {
    float: right;
    margin-top: -47px;
    width: 30%;
    margin-right: 1px;
    border-radius: 0 3px 3px 0;
}
input.euc-y-s[type="submit"]{background-color:#FF0016;color:#fff;font-size:21px;box-shadow:none;-webkit-transition: .4s;-moz-transition: .4s;-o-transition: .4s;transition:.4s;-webkit-backface-visibility:hidden;position:relative;cursor:pointer;padding: 13px 20px;text-align: center;border-radius: 50px;-webkit-box-shadow: none;

分类:

技术点:

相关文章: