求高手,wordpress的文章评论点击回复出现undefined,和评论定位问题。

求高手,wordpress的文章评论点击回复出现undefined,和评论定位问题。,第1张

确实是没加commnet-id,结构应该是这样的吧:

<div class="perComment" id="li-comment-13">

<div id="comment-13">                      //这个没有

</div>

</div>

回复的话可能也是这个问题,无法获取到该评论的id,所以不能对该评论进行回复。

更多wordpress知识,请百度 TENNFY WU

关闭wordpress的评论 下面这个是wordpress的总评论开关,可以关闭所有文章的评论功能,除了那些已经特别设置要开评论的文章。(也就是说,文章的评论设置会覆盖这个总设置) 设置-->讨论-->不要勾寻允许他人在新文章上发表评论”

你这个没有看到你添加评论函数,

自然就没有文章评论喽。

在倒数第二行的上面添加以下代码,

<php

if (function_exists('wp_list_comments')) {

comments_template('', true);

} else {

comments_template();

}

>

应该就可以了。

希望帮到你了。

WordPress部分内容,让用户评论可见,如果你设置, 登陆用户才可以评论,还可以达到用户登陆后评论可见的效果。那么WordPress网站如何实现评论后可见隐藏部分内容?

将下面的代码添加到主题的 functionsphp 文件:

//部分内容评论可见

function reply_to_read($atts, $content=null) {

       extract(shortcode_atts(array("notice" => '<p class="reply-to-read">温馨提示: 此处内容需要<a href="" title="评论本文">评论本文</a>后才能查看</p>'), $atts));

       $email = null;

       $user_ID = (int) wp_get_current_user()->ID;

       if ($user_ID > 0) {

           $email = get_userdata($user_ID)->user_email;

           //对站长直接显示内容  

           $admin_email = "admin@ymjihecom"; //站长Email  

           if ($email == $admin_email) {

               return $content;

           }

       } else if (isset($_COOKIE['comment_author_email_' COOKIEHASH])) {

           $email = str_replace('%40', '@', $_COOKIE['comment_author_email_' COOKIEHASH]);

       } else {

           return $notice;

       }

       if (empty($email)) {

           return $notice;

       }

       global $wpdb;

       $post_id = get_the_ID();

       $query = "SELECT `comment_ID` FROM {$wpdb->comments} WHERE `comment_post_ID`={$post_id} and `comment_approved`='1' and `comment_author_email`='{$email}' LIMIT 1";

       if ($wpdb->get_results($query)) {

           return do_shortcode($content);

       } else {

           return $notice;

       }

   }

   add_shortcode('reply', 'reply_to_read');

以上就是关于求高手,wordpress的文章评论点击回复出现undefined,和评论定位问题。全部的内容,包括:求高手,wordpress的文章评论点击回复出现undefined,和评论定位问题。、如何使用wordpress后台的评论、wordpress主题没有评论功能等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9501777.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存