Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created December 23, 2017 11:02
Show Gist options
  • Save techjewel/f5ceed49de1821f631a9ab583905c6fb to your computer and use it in GitHub Desktop.
Save techjewel/f5ceed49de1821f631a9ab583905c6fb to your computer and use it in GitHub Desktop.
<?php
function addInlineVars($vars, $table_id) {
if(function_exists('wp_add_inline_script')) {
wp_add_inline_script( 'script_handle', 'window.ninja_footables.tables["table_'.$table_id.'"] = '.$vars.';');
} else {
add_action('wp_footer', function () use ($vars, $table_id) {
?>
<script type="text/javascript">
window.ninja_footables.tables["table_<?php echo $table_id;?>"] = <?php echo $vars ?>;
</script>
<?php
}, 100);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment