Tagged Questions
1
vote
1answer
367 views
How to override wp_insert_comment()
I am trying to override wp_insert_comment() (wp-includes/comment.php). I added the following lines of code in my functions.php file, located in my theme :
add_filter('wp_insert_comment', ...
1
vote
2answers
357 views
Changing the comments link produced by the get_comments_link() and get_comments_pagenum_link() functions
Currently my theme calls upon get_comments_link() to create the standard anchor #comments to link to the comments below the post, as does the get_comments_pagenum_link() function on paginated ...