2
Add Spam And Delete Links To Comments On Frontend
This is useful so you don’t have to go to the dashboard to mark a comment as spam or delete it. It will add links to do that right on the comments of your posts.
// spam & delete links for all versions of wordpress
function delete_comment_link($id) {
if (current_user_can('edit_post')) {
echo '| <a href="'.get_bloginfo('wpurl').'/wp-admin/comment.php?action=cdc&c='.$id.'">del</a> ';
echo '| <a href="'.get_bloginfo('wpurl').'/wp-admin/comment.php?action=cdc&dt=spam&c='.$id.'">spam</a>';
}
}






User Comments
( ADD YOURS )Aggour adnane April 30
I didn't know where exactly to past this code
In functions.php file
Trackbacks