Remove the url field from the comment form
WPS::comment_remove_url_field();Get the post comments depending on the arguments you've passed.
The arguments are the same as the one of get_comments wordpress function.
This function return an array of \WPS\Comment objects.
$comments = WPS::comments();Get some recent comments depending on the arguments you've passed.
The arguments are the same as the one of get_comments wordpress function.
This function return an array of WPS_Comment objects.
$comments = WPS::recent_comments([
'number' => 3
]);