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>';
    }
}
Levels: Syntax: ,

User Comments

( ADD YOURS )

  1. I didn't know where exactly to past this code


  2. In functions.php file

Trackbacks


  1. Avatar

    Your Name
    May 17


    CommentLuv badge