以下由WordPress教學專欄跟大家介紹WordPress實作登入可見評論模組的方法,希望對需要的朋友有幫助!
WordPress正常可以設定登入發表評論,但不登入也可以正常看到留言評論內容,最近有用戶說接到通知個人備案的網站不允許有評論互動功能,雖然我沒接過通知,但可以簡單修改一下模板,讓主題評論模組只有在登入的狀態下可見。
WordPress 登入可見光評論模組WordPress 登入可見評論模組
這裡我們要用到WordPress判斷是否登入的函數:is_user_logged_in()
用判斷函數把評論模組包起來就行了。
以WordPress預設主題Twenty Seventeen為例,開啟主題正文模板檔案single.php,找到類似的:
if ( comments_open() || get_comments_number() ) : comments_template(); endif;
修改為:
if ( is_user_logged_in()){ if ( comments_open() || get_comments_number() ) : comments_template(); endif; }
之後,只有登入的狀態下才能看見評論模組及評論內容。
其它主題方法類似,例如:
<?php if ( is_user_logged_in()){ ?> <?php if ( comments_open() || get_comments_number() ) : ?> <?php comments_template( '', true ); ?> <?php endif; ?> <?php } ?>
以上是WordPress實作登入可見評論模組的詳細內容。更多資訊請關注PHP中文網其他相關文章!