Skip to content

Instantly share code, notes, and snippets.

@eto4detak
Created December 8, 2018 08:38
Show Gist options
  • Save eto4detak/ea585f51c88a680a29adb0bc9a12db78 to your computer and use it in GitHub Desktop.
Save eto4detak/ea585f51c88a680a29adb0bc9a12db78 to your computer and use it in GitHub Desktop.
wp php JSON
<?php
public function __construct()
{
add_action('print_footer_scripts', array($this,'print_script_addsdgsdgsd'), 99);
}
public function print_script_addsdgsdgsd()
{
if( !empty($this->elements)){
?>
<script type="text/javascript">
var elements = JSON.parse('<?php print json_encode($this->elements)?>' );
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment