How can I modify the html output of a custom post type admin page?

The solution could involve the items below. 1. Edit Post admin page display Create a WordPress block. Register the block on the server with register_block_type. Register the block in the client with registerBlockType. This function’s block configuration object (with properties like those in block.json) has an edit property which is a function. This edit function … Read more

Execute callback after REST API request completes + Response is sent

You can look into queues e.g. create a custom database table, and write to it within the rest_post_dispatch or rest_pre_serve_request filter just before it is dispatched. Then you can bulk process the queue (first record in is the first record out) via e.g. wp-cron and the user will not be affected by that potentially heavy … Read more