Skip to content

Instantly share code, notes, and snippets.

@DustyReagan
DustyReagan / blablabla.js
Created September 8, 2021 21:38 — forked from taniagreen/blablabla.js
Pass parameters from PHP to React component - global variables
/// user.php ///
// initialize global variable in a script added to your php file
<script>
window.reactData = {
postId: <?php echo get_the_id(); ?>
};
</script>