答案的关键是在SO上找到的;以下是我的案例的解决方案:
使用以下内容创建PHP文件:
<?php
define(\'WP_USE_THEMES\', false);
require(\'path/to/your-wordpress-dir/wp-blog-header.php\');
get_header();
?>
//Contents of the body of your XHTML page go here
<?php get_footer(); ?>
现在您有了一个Wordpress主题格式的外部页面。