I want to create a "simulator" or interpreter to run WooCommerce themes without the need to install WordPress. In other words: I want to run the front-end of WooCommerce themes on my own website, but the data will be fetched from my own database or JSON files. This means creating an intermediate PHP file that includes all the basic WordPress functions (get_header, get_the_title, the_content, etc.) required by the theme to function, but these functions will not depend on WordPress. These are mock functions that pull data from a database or JSON files for testing and simulate the theme. We are only simulating what the theme needs (display functions); we don’t need wp-admin. The ultimate goal is to be able to convert any WooCommerce theme into a theme that works inside my website and connects directly to my database through an intermediate layer that simulates the core display functions only. Any theme should work on my site as long as it works on WooCommerce. Thank you in advance.