wip first shortcode
This commit is contained in:
11
plugins/fipf_wp_plugin/utils/consolelog.php
Normal file
11
plugins/fipf_wp_plugin/utils/consolelog.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
// https://stackify.com/how-to-log-to-console-in-php/
|
||||
|
||||
function consolelog($output) {
|
||||
$js_code = 'console.log(' . json_encode($output, JSON_HEX_TAG) . ');';
|
||||
$js_code = '<script>' . $js_code . '</script>';
|
||||
echo $js_code;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user