我有一个wordpress网站,运行良好。除了那个网站,我还有一个论坛www.mywordpresssite。com/论坛正在运行。现在我想将这个论坛(phpbb)集成到我的wordpress站点中。
我想做的是添加一个名为forum的menuitem,并将其链接到名为forum的文件。php,包含以下内容:
<?php get_header(); ?>
<div id="content"><!-- if it\'s not in the header, that is... -->
<iframe src="http://www.mywordpressite.com/forum" width="100%" height="80%" />
</div>
<?php get_footer() ?>
这样,我想我可以保留我的标题&;页脚从我的wordpress网站en之间,可以显示我的论坛。
我的问题是:我如何称呼这个文件论坛。php?我创建了该文件并将其放在主题目录中。