Files
WORDPRESS_PLUGIN_model/plugins/fipf_wp_plugin/utils/console_log.php
asus b943682047 - start a basic plugin that can send code to front
- for the moment it send js scripts, css, and variables
2024-02-07 18:46:28 +01:00

12 lines
237 B
PHP

<?php
// https://stackify.com/how-to-log-to-console-in-php/
function console_log($output) {
$js_code = 'console.log(' . json_encode($output, JSON_HEX_TAG) . ');';
$js_code = '<script>' . $js_code . '</script>';
echo $js_code;
}
?>