comments-ajax,comments-ajax.php

/**

* WordPress 內置嵌套評論專用 Ajax comments >> WordPress-jQuery-Ajax-Comments v1.3 by Willin Kan.

*

* 說明: 這個文件是由 WP 3.0 根目錄的 wp-comment-post.php 修改的, 修改的地方有注解. 當 WP 升級, 請注意可能有所不同.

*

* zww: 匹配到 WP3.5.2

*/

if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {

header('Allow: POST');

header('HTTP/1.1 405 Method Not Allowed');

header('Content-Type: text/plain');

exit;

}

/** Sets up the WordPress Environment. */

require( dirname(__FILE__) . '/../../../wp-load.php' ); // 此 comments-ajax.php 位於主題資料夾,所以位置已不同

nocache_headers();

$comment_post_ID = isset($_POST['comment_post_ID']) ? (int) $_POST['comment_post_ID'] : 0;

$post = get_post($comment_post_ID);

if ( empty($post->comment_status) ) {

do_action('comment_id_not_found', $comment_post_ID);

err(__('Invalid comment status.')); // 將 exit 改為錯誤提示

}

// get_post_status() will get the parent status for attachments.

$status = get_post_status($post);

$status_obj = get_post_status_object($status);

if ( !comments_open($comment_post_ID) ) {

do_action('comment_closed', $comment_post_ID);

err(__('Sorry, comments are closed for this item.')); // 將 wp_die 改為錯誤提示

} elseif ( 'trash' == $status ) {

do_action('comment_on_trash', $comment_post_ID);

err(__('Invalid comment status.')); // 將 exit 改為錯誤提示

} elseif ( !$status_obj->public && !$status_obj->private ) {

do_action('comment_on_draft', $comment_post_ID);

err(__('Invalid comment status.')); // 將 exit 改為錯誤提示

} elseif ( post_password_required($comment_post_ID) ) {

do_action('comment_on_password_protected', $comment_post_ID);

err(__('Password Protected')); // 將 exit 改為錯誤提示

} else {

do_action('pre_comment_on_post', $comment_post_ID);

}

$comment_author = ( isset($_POST['author']) ) ? trim(strip_tags($_POST['author'])) : null;

$comment_author_email = ( isset($_POST['email']) ) ? trim($_POST['email']) : null;

$comment_author_url = ( isset($_POST['url']) ) ? trim($_POST['url']) : null;

$comment_content = ( isset($_POST['comment']) ) ? trim($_POST['comment']) : null;

$edit_id = ( isset($_POST['edit_id']) ) ? $_POST['edit_id'] : null; // 提取 edit_id

// If the user is logged in

$user = wp_get_current_user();

if ( $user->exists() ) {

if ( empty( $user->display_name ) )

$user->display_name=$user->user_login;

$comment_author = $wpdb->escape($user->display_name);

$comment_author_email = $wpdb->escape($user->user_email);

$comment_author_url = $wpdb->escape($user->user_url);

if ( current_user_can('unfiltered_html') ) {

if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) {

kses_remove_filters(); // start with a clean slate

kses_init_filters(); // set up the filters

}

}

} else {

if ( get_option('comment_registration') || 'private' == $status )

err(__('Sorry, you must be logged in to post a comment.')); // 將 wp_die 改為錯誤提示

}

$comment_type = '';

if ( get_option('require_name_email') && !$user->exists() ) {

if ( 6 > strlen($comment_author_email) || '' == $comment_author )

err( __('Error: please fill the required fields (name, email).') ); // 將 wp_die 改為錯誤提示

elseif ( !is_email($comment_author_email))

err( __('Error: please enter a valid email address.') ); // 將 wp_die 改為錯誤提示

}

if ( '' == $comment_content )

err( __('Error: please type a comment.') ); // 將 wp_die 改為錯誤提示

// 增加: 錯誤提示功能

function err($ErrMsg) {

header('HTTP/1.1 405 Method Not Allowed');

echo $ErrMsg;

exit;

}

// 增加: 檢查重覆評論功能

$dupe = "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = '$comment_post_ID' AND ( comment_author = '$comment_author' ";

if ( $comment_author_email ) $dupe .= "OR comment_author_email = '$comment_author_email' ";

$dupe .= ") AND comment_content = '$comment_content' LIMIT 1";

if ( $wpdb->get_var($dupe) ) {

err(__('Duplicate comment detected; it looks as though you’ve already said that!'));

}

// 增加: 檢查評論太快功能

if ( $lasttime = $wpdb->get_var( $wpdb->prepare("SELECT comment_date_gmt FROM $wpdb->comments WHERE comment_author = %s ORDER BY comment_date DESC LIMIT 1", $comment_author) ) ) {

$time_lastcomment = mysql2date('U', $lasttime, false);

$time_newcomment = mysql2date('U', current_time('mysql', 1), false);

$flood_die = apply_filters('comment_flood_filter', false, $time_lastcomment, $time_newcomment);

if ( $flood_die ) {

err(__('You are posting comments too quickly. Slow down.'));

}

}

$comment_parent = isset($_POST['comment_parent']) ? absint($_POST['comment_parent']) : 0;

$commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'comment_parent', 'user_ID');

// 增加: 檢查評論是否正被編輯, 更新或新建評論

if ( $edit_id ){

$comment_id = $commentdata['comment_ID'] = $edit_id;

wp_update_comment( $commentdata );

} else {

$comment_id = wp_new_comment( $commentdata );

}

$comment = get_comment($comment_id);

do_action('set_comment_cookies', $comment, $user);

//$location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id; //取消原有的刷新重定向

//$location = apply_filters('comment_post_redirect', $location, $comment);

//wp_safe_redirect( $location );

//exit;

$comment_depth = 1; //为评论的 class 属性准备的

$tmp_c = $comment;

while($tmp_c->comment_parent != 0){

$comment_depth++;

$tmp_c = get_comment($tmp_c->comment_parent);

}

//以下是評論式樣, 不含 "回覆". 要用你模板的式樣 copy 覆蓋.

?>

id="li-comment-<?php comment_ID(); ?>">

<?php echo get_avatar( $comment,$size='40',$default='' ); ?>

<?php printf( __( '%s says:'), get_comment_author_link() ); ?>

<?php if ( $comment->comment_approved == '0' ) : ?>

一键复制

编辑

Web IDE

原始数据

按行查看

历史

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
提供的源码资源涵盖了安卓应用、小程序、Python应用和Java应用等多个领域,每个领域都包含了丰富的实例和项目。这些源码都是基于各自平台的最新技术和标准编写,确保了在对应环境下能够无缝运行。同时,源码中配备了详细的注释和文档,帮助用户快速理解代码结构和实现逻辑。 适用人群: 这些源码资源特别适合大学生群体。无论你是计算机相关专业的学生,还是对其他领域编程感兴趣的学生,这些资源都能为你提供宝贵的学习和实践机会。通过学习和运行这些源码,你可以掌握各平台开发的基础知识,提升编程能力和项目实战经验。 使用场景及目标: 在学习阶段,你可以利用这些源码资源进行课程实践、课外项目或毕业设计。通过分析和运行源码,你将深入了解各平台开发的技术细节和最佳实践,逐步培养起自己的项目开发和问题解决能力。此外,在求职或创业过程中,具备跨平台开发能力的大学生将更具竞争力。 其他说明: 为了确保源码资源的可运行性和易用性,特别注意了以下几点:首先,每份源码都提供了详细的运行环境和依赖说明,确保用户能够轻松搭建起开发环境;其次,源码中的注释和文档都非常完善,方便用户快速上手和理解代码;最后,我会定期更新这些源码资源,以适应各平台技术的最新发展和市场需求。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值