mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
* Initial refactor commit
* ✅ Added build and tests CI/CD
* PR Rejects
* Rejects leftover
8 lines
138 B
PHP
8 lines
138 B
PHP
<?php
|
|
/**
|
|
* wp_ajax_print_handler
|
|
* @param $message
|
|
*/
|
|
function wp_ajax_print_handler( $message ): void {
|
|
echo esc_html( $message );
|
|
}
|