Comment.php
401 Bytes
<?php
namespace ACP\Editing\Ajax\TableRows;
use ACP\Editing\Ajax\TableRows;
final class Comment extends TableRows
{
public function register(): void
{
add_action('parse_comment_query', [$this, 'handle_request']);
}
public function handle_request(): void
{
remove_action('parse_comment_query', [$this, __FUNCTION__]);
parent::handle_request();
}
}