WordPress 在评论列表中给文章作者或是站长添加一个有趣的标识,让他们更加显眼可以更容易让看评论的访客抓住重点内容,多作者博客或单作者博客最好使用管理员作为提示,荒岛本次带来 WordPress 评论判断文章作者的教程,只要将下面的代码添加到主题的「functions.php」文件即可。宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-judging-the-author-of-the-article.html
// 荒岛一座藏有宝藏的小岛 function comment_by_post_author( $comment = null ) { if ( is_object( $comment ) && $comment->user_id > 0 ) { $user = get_userdata( $comment->user_id ); $post = get_post( $comment->comment_post_ID ); if ( ! empty( $user ) && ! empty( $post ) ) { return $comment->user_id === $post->post_author; } } return false; }宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-judging-the-author-of-the-article.html
请按 Ctrl+D 收藏荒岛分享给好友 如您发现本文件已经失效无法下载请联系站长修正
- 荒岛公众号
- 扫一扫关注
- 荒岛小程序
- 扫一扫关注
评论