2003-04-01 16:12:34 +02:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* Handles Comment Post to WordPress and prevents duplicate comment posting.
|
|
|
|
*
|
2008-06-20 22:56:40 +02:00
|
|
|
* @package WordPress
|
2008-05-25 17:50:15 +02:00
|
|
|
*/
|
|
|
|
|
2007-07-04 18:12:37 +02:00
|
|
|
if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
|
|
|
|
header('Allow: POST');
|
|
|
|
header('HTTP/1.1 405 Method Not Allowed');
|
|
|
|
header('Content-Type: text/plain');
|
|
|
|
exit;
|
2007-03-28 19:34:42 +02:00
|
|
|
}
|
2008-05-25 17:50:15 +02:00
|
|
|
|
|
|
|
/** Sets up the WordPress Environment. */
|
2008-05-21 07:59:27 +02:00
|
|
|
require( dirname(__FILE__) . '/wp-load.php' );
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2005-11-05 23:08:56 +01:00
|
|
|
nocache_headers();
|
|
|
|
|
2015-10-03 16:47:26 +02:00
|
|
|
$comment = wp_handle_comment_submission( wp_unslash( $_POST ) );
|
|
|
|
if ( is_wp_error( $comment ) ) {
|
2016-01-30 22:56:27 +01:00
|
|
|
$data = intval( $comment->get_error_data() );
|
2015-10-03 16:47:26 +02:00
|
|
|
if ( ! empty( $data ) ) {
|
2016-01-30 22:56:27 +01:00
|
|
|
wp_die( '<p>' . $comment->get_error_message() . '</p>', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true ) );
|
2015-10-03 16:47:26 +02:00
|
|
|
} else {
|
|
|
|
exit;
|
2014-11-26 21:17:24 +01:00
|
|
|
}
|
2007-03-15 00:10:57 +01:00
|
|
|
}
|
2004-12-16 03:57:05 +01:00
|
|
|
|
2015-10-03 16:47:26 +02:00
|
|
|
$user = wp_get_current_user();
|
2013-09-05 18:05:09 +02:00
|
|
|
|
|
|
|
/**
|
2013-09-06 03:38:09 +02:00
|
|
|
* Perform other actions when comment cookies are set.
|
2013-09-05 18:05:09 +02:00
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
2015-09-03 20:17:24 +02:00
|
|
|
* @param WP_Comment $comment Comment object.
|
|
|
|
* @param WP_User $user User object. The user may not exist.
|
2013-09-05 18:05:09 +02:00
|
|
|
*/
|
|
|
|
do_action( 'set_comment_cookies', $comment, $user );
|
2003-04-07 08:55:21 +02:00
|
|
|
|
2015-10-03 16:47:26 +02:00
|
|
|
$location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID;
|
2013-09-05 18:05:09 +02:00
|
|
|
|
|
|
|
/**
|
2016-05-23 18:44:27 +02:00
|
|
|
* Filters the location URI to send the commenter after posting.
|
2013-09-05 18:05:09 +02:00
|
|
|
*
|
2014-02-09 21:12:12 +01:00
|
|
|
* @since 2.0.5
|
2013-09-05 18:05:09 +02:00
|
|
|
*
|
2015-09-03 20:17:24 +02:00
|
|
|
* @param string $location The 'redirect_to' URI sent via $_POST.
|
|
|
|
* @param WP_Comment $comment Comment object.
|
2013-09-05 18:05:09 +02:00
|
|
|
*/
|
|
|
|
$location = apply_filters( 'comment_post_redirect', $location, $comment );
|
2004-10-05 18:22:31 +02:00
|
|
|
|
2012-04-10 19:21:17 +02:00
|
|
|
wp_safe_redirect( $location );
|
2010-12-09 19:02:54 +01:00
|
|
|
exit;
|