Plugin progress 20 May 2009


Post Views for Sep :
andy
I am the creator of CommentLuv Premium
andy
andy
You can get your own content published on this site as long as you have CommentLuv installed on your site.

Doing so means you get exposure to thousands and thousands of other CommentLuv users and your posts get sent out to the massive subscriber list.

Google loves this site and indexes it multiple times per day and posts always get lots of comments so you can be sure of some excellent exposure.

See the Write For Us page for more details

btw.. you can get this author box here

20 May 2009 – Insert choice and request id fields to form. Major update to ajax script. Process posted data. Replace data with hidden span on display comment, Add confirm comment call and show message if spam.

add_action('comment_post',array(&$this,'approve_comment'));
approve_comment function gets passed the id of the comment

// hook the post comment

to send confirm to comluv
function approve_comment($cid){
// get comment stuff from id
$comment = get_comment($cid);
if($comment->status != "spam"){

can get spam status by get_comment putting all comment data into $comment object
$comment->comment_content

ref: http://codex.wordpress.org/Function_Reference/get_comment