wordpress隐藏文章的部分内容,需要注册登录网站后可见

这种方式适合VIP会员,会员要注册登录才能访问,而注册需要邀请码,可以出售邀请码,就变成了VIP会员可以访问隐藏的内容。

// 添加只允许登录后查看  
 
add_shortcode( 'members_only', 'members_only_shortcode' );
 
function members_only_shortcode( $atts, $content = null ) {
 
if ( is_user_logged_in() && !empty( $content ) && !is_feed() )    {
 
return $content;
 
}
 
$a= '<center><span>
<div style="text-align:center;border:1px dashed #FF9A9A;padding:8px;margin:10px auto;color:green;">要查看更多文章内容,请您先<a href="http://daaa.ga/wp-login.php" target="_blank">登录/注册</a>
</div>
</span></center>';
 
return $a;
 
}

在主题模板函数 functions.php的<?php下边添加代码实现。

[members_only]

这里的内容只为已登录的用户显示的

[/members_only]

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注