How to embed an external program with wordpress
-
Hi, I just installed wordpress yesterday. I have been reading the doc. However, I seem can not find exactly what I am looking for. I have an one page php hangman game with external css, and images that I would like to embed it in the middle of the site. So I need a page that only include my header, footer, and side bar, and then I can embed the game script.
I made a page called game.php and use
<?php
include_once(“/themes/mythemes/header.php”);
include_once(“/themes/mythemes/sidebar-right.php”);
include_once(“/hangman.php”);
include_once(“/themes/mythemes/footer.php”);
?>And put that into my root.
But it does not work at all. I don’t know php that much.
Can somebody give me some help? How do I make a page that will work like that?
Thank you very much.
- The topic ‘How to embed an external program with wordpress’ is closed to new replies.