Either way, if you know there's a code to run php code within posts you could just do this in posts:
<?php include_once("/full/path/to/file.php");?>
^but this would only include it once on any page if there are multiple posts
OR
<?php include("/full/path/to/file.php");?>
Good luck.
|