禁止游客查看插件— Hide Posts from Guests

插件介绍

禁止游客查看文章的一个插件,需要自己制作,本站仅提供源码。

 

插件截图

 

插件信息

将下面这段代码保存到一个名为 hide-posts-from-guests.php 的文件中,并放在WordPress站点的插件目录。然后,在WordPress后台激活插件即可。

 

下载地址

<?php
 /* Plugin Name: Hide Posts from Guests 
Description: This plugin hides post content from guests. 
Version: 1.0 
Author: OpenAI 
*/ 
add_filter( 'the_content', 'hide_posts_from_guests' ); 
function hide_posts_from_guests( $content ) { if ( !is_user_logged_in() ) { 
return '抱歉,您必须登录才能查看内容。' ; 
} return $content; }
© 版权声明
THE END
点赞0
评论 抢沙发

请登录后发表评论

    暂无评论内容