LikeAComment
Adds a like to a specific WordPress comment and updates the like count accordingly.
Stored Procedure Specific Information
Execute
Call this procedure to like a comment.
To like a comment, you must specify the following column: CommentId. A successful authentication is also required.
For example:
EXEC LikeAComment CommentId=80;
Input
| Name | Type | Description |
| CommentId | Integer | The unique identifier of the WordPress comment being liked. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the like action for the specified comment completed successfully. |
| ILike | Boolean | Indicates whether the current user has liked the comment. |
| LikeCount | Integer | The total number of likes the comment has received in WordPress. |
| MetaAggregate | String | Aggregated metadata for the comment like action returned by the WordPress API. |