嗯,不用插件,加段代码就可以了。
因为子比还没出禁止游客浏览文章的功能。
用wordpress自带的函数就能实现
if(!is_user_logged_in()){
echo '<h2>因遗憾的通知您因非法闯入本站文章页面,现在要把你抓去摘棉花</h2>';
}else{
the_content();
}
放在
zibll/inc/functions/zib-single.php
第306行下面 自己看着换嗯,基本不会有问题的
【处理购买模块】
zibll/zibpay/functions/zibpay-post.php 第226行
if ($paid) {
//添加处理挂钩
$html = apply_filters('zibpay_posts_paid_box', '', $pay_mate, $post->ID);
$html = $html ? $html : zibpay_posts_paid_box($pay_mate, $paid, $post->ID);
if(is_user_logged_in()){
echo $html;}
} else {
//添加处理挂钩
$html = apply_filters('zibpay_posts_pay_box', '', $pay_mate, $post->ID);
$html = $html ? $html : zibpay_posts_pay_box($pay_mate, $post->ID);
if(is_user_logged_in()){
echo $html;}
}
【预览】