Hello to all dear friends,
How can we add a new row actions item to product reviews?
I used the following code, but the new item is not added
add_filter('comment_row_actions','my_action_row', 100, 2);
function my_action_row($actions, $comment){
$actions = '<a href="http://www.google.com/?q='.get_permalink($post->ID).'">check if indexed</a>';
return $actions;
}
I have included a picture for you
https://postimg.cc/v4K2SwDB
New contributor
Moslem Fallah is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.