In WP-Chache and Staticize Reloaded, there is this hack:
<!--mfunc function_name('parameter', 'another_parameter') -->
<?php function_name('parameter', 'another_parameter') ?>
<!--/mfunc-->
The HTML comments around the mirrored PHP allow it to be executed in the static page. To include another file try this:
<!--mclude file.php-->
<?php include_once(ABSPATH . 'file.php'); ?>
<!--/mclude-->
————-
I’d like to know if that would work on WP-Super Cache. Maybe that would help to those who don’t know (or don’t want) to get a java app.