我如何在wordpress主题目录之外使用header.php和footer.php

时间:2015-04-21 12:21:28

标签: php wordpress

我在wordpress中安装了一个主题,就像这个目录/wp-content/themes/mytheme一样,所以在root中我有自定义代码,它很复杂,很容易集成到wordpress主题中,所以我想找一个可以使用的选项{{ 1}}和header.php在根目录中就像这样。 footer.php

2 个答案:

答案 0 :(得分:2)

经过大量搜索后,这是解决方案。

<?php require('../wp-blog-header.php'); ?>

<?php get_header(); ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-

transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo

('charset'); ?>" />
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php

wp_title(); ?></title>

<?php wp_head(); ?>
</head>

<body>
It works!

</body>
</html>

<?php get_footer(); ?>

答案 1 :(得分:0)

像这样包含header.php和footer.php: http://codex.wordpress.org/Integrating_Wordpress_with_Your_Website

从页面:

<?php 
/* Short and sweet */
define('WP_USE_THEMES', false);
require('./wp-blog-header.php');
?>