WordPress 登录显示评论教程 WP 主题优化增强 function 文件实用功能代码段

ximagine
ximagine
管理
2014
文章
0
粉丝
教程 为什么评论35字数 169阅读0分33秒阅读模式
宝藏摘要WordPress 正常可以设置登录发表评论,但是在未登录的情况下也可以看到留言评论内容,可以简单修改一下让评论模块只有在登录的状态下可见,荒岛本次带来WordPress 登录显示...
荒岛广告位招商进行中...
WordPress 登录显示评论教程  WP 主题优化增强 function 文件实用功能代码段
日期:2023年8月17日 分类:教程  为什么 评论:发表评论 浏览:35

WordPress 正常可以设置登录发表评论,但是在未登录的情况下也可以看到留言评论内容,可以简单修改一下让评论模块只有在登录的状态下可见,荒岛本次带来 WordPress 登录显示评论的教程,只要将下面的代码添加到主题的「functions.php」文件即可。

// 荒岛一座藏有宝藏的小岛
function ximagine_comments() {
	if (get_option('login_comment')) {
		if ( is_user_logged_in()){
			if ( comments_open() || get_comments_number() ) :	
				if ( get_option( 'sticky_comments' ) && get_option( 'comments_top' ) ) {
					be_sticky_comments();
				}
				comments_template( '', true );
			endif;
		}
	} else {
	if ( comments_open() || get_comments_number() ) :
		if ( get_option( 'sticky_comments' ) && get_option( 'comments_top' ) ) {
			be_sticky_comments();
		}
		comments_template( '', true );
	endif;
	}
}
宝藏内容来自荒岛-https://x-imagine.com/wordpress-login-to-show-comments-tutorial.html宝藏内容来自荒岛-https://x-imagine.com/wordpress-login-to-show-comments-tutorial.html

请按 Ctrl+D 收藏荒岛分享给好友 如您发现本文件已经失效无法下载请联系站长修正

荒岛公众号
扫一扫关注
weinxin
HDsoft27
公众号ID已复制,前往微信关注...
荒岛小程序
扫一扫关注
weinxin
ximagine
哔哩姬ID已复制,前往B站关注...
荒岛广告位招商进行中...
 
荒岛广告位招商进行中...

发表评论