wp_allow_comment [ WordPress Function ]
wp_allow_comment ( $commentdata )
| Parameters: |
|
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: wp_new_comment, wp_spam_comment, wp_trash_comment, wp_list_comments, wp_count_comments
Validates whether this comment is allowed to be made.
Source
<?php
function wp_allow_comment($commentdata) {
global $wpdb;
extract($commentdata, EXTR_SKIP);
// Simple duplicate check
// expected_slashed ($comment_post_ID, $comment_author, $comment_author_email, $comment_content)
$dupe = "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = '$comment_post_ID' AND comment_approved != 'trash' 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) ) {
do_action( 'comment_duplicate_trigger', $commentdata );
if ( defined('DOING_AJAX') )
die( __('Duplicate comment detected; it looks as though you’ve already said that!') );
wp_die( __('Duplicate comment detected; it looks as though you’ve already said that!') );
}
do_action( 'check_comment_flood', $comment_author_IP, $comment_author_email, $comment_date_gmt );
if ( isset($user_id) && $user_id) {
$userdata = get_userdata($user_id);
$user = new WP_User($user_id);
$post_author = $wpdb->get_var($wpdb->prepare("SELECT post_author FROM $wpdb->posts WHERE ID = %d LIMIT 1", $comment_post_ID));
}
if ( isset($userdata) && ( $user_id == $post_author || $user->has_cap('moderate_comments') ) ) {
// The author and the admins get respect.
$approved = 1;
} else {
// Everyone else's comments will be checked.
if ( check_comment($comment_author, $comment_author_email, $comment_author_url, $comment_content, $comment_author_IP, $comment_agent, $comment_type) )
$approved = 1;
else
$approved = 0;
if ( wp_blacklist_check($comment_author, $comment_author_email, $comment_author_url, $comment_content, $comment_author_IP, $comment_agent) )
$approved = 'spam';
}
$approved = apply_filters( 'pre_comment_approved', $approved, $commentdata );
return $approved;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/wp allow comment « WordPress Codex
Description. Validates whether this comment is allowed to be made or not. Usage . <?php wp_allow_comment( $commentdata ) ?> Parameters. $commentdata ...
codex.wordpress.org - #3197 (wp_allow_comment has unused code) – WordPress Trac
The wp_allow_comment function has some code which is never used (anymore). $comment_user_domain = apply_filters('pre_comment_user_domain' ...
core.trac.wordpress.org - #16338 (BUG: wp_allow_comment 'user_ID') – WordPress Trac
All inludes of '$user_id' variable is not implemented in the wp_allow_comment function. Therefore some if-conditions always are FALSE. For examle: ...
core.trac.wordpress.org - wp_allow_comment (WordPress Function) - WPSeek.com
WordPress lookup for wp_allow_comment, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com