Pings and replies

Technically, you could, but it wouldn’t make sense to do this. A ping isn’t a comment. Nobody wrote on your blog. It’s simply notification from a ping-enabled site that shows that site linked to your post. The site that included your link might be a scrapper site, a spammer, or someone who legitimately refers to … Read more

Threaded Comments Feature not working

You have a couple potential issues: Your version of WordPress and/or your current Theme does not support threaded comments. What version of WordPress are you using? What Theme are you using? Something is interfering with comment display What Plugins are you using, that might be interacting with comments? These would include anti-spam Plugins, security Plugins, … Read more

Adding another arg to comments_popup_link

Filter ‘comments_number’. You get the translated number and the real number as arguments. Return what fits best. Sample code: add_filter( ‘comments_number’, ‘wpse_31328_comments_number_i18n’, 10, 2 ); function wpse_31328_comments_number_i18n( $text, $number ) { if ( 2 === $number ) { return _x( ‘2 comments’, ‘comments number’, ‘your_text_domain’ ); // or hard coded: // return ‘2 komentarja’; } … Read more

In administration, how do I display comments of a certain user?

Afaik, there’s no straight forward way for this. You’d have to extend the WP_List_Table and add an extra column. This would be an example function: function wpse_get_comments_by_user( $user_ID ) { global $wpdb; $rows = $wpdb->query( $wpdb->prepare( ” SELECT * FROM %s WHERE user_id = %d ” ,$wpdb->comments ,(int) $user_ID ) ); return $rows; } The … Read more

Private replies for comments

No, there is no way in the WordPress Core to send private messages. That’s what the email address is for. But why would you want an extra contact form for that?

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)