将外部PHP文件包含到Wordpress自定义模板中

时间:2013-08-25 18:32:48

标签: php wordpress wordpress-theming include-path

这甚至可能吗?我的意思是,我试图在我的网站上添加一个博客..我已经在我的网站中有页眉,页脚和侧边栏布局。我可以在我的自定义wordpress模板中使用它们吗?

<?php
/*
Template Name: Blog
*/
?>
<?php include( PATH . 'http://www.mysite.com/includes/header.php' );  ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  <h2><a href="<?php the_permalink() ?>">
    <?php the_title(); ?>
    </a></h2>
  <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
  <div class="entry">
    <?php the_content(); ?>
  </div>
  <div class="postmetadata">
    <?php the_tags('Tags: ', ', ', '<br />'); ?>
    Posted in
    <?php the_category(', ') ?>
    |
    <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
  </div>
</div>
<?php endwhile; ?>
<div class="mypagination">
  <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
</div>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
<?php include( PATH . 'http://www.mysite.com/includes/sidebar.php' );  ?>
<?php include( PATH . 'http://www.mysite.com/includes/footer.php' );  ?>

我也试过..

<?php include('http://mywebsite.com/includes/header.php'); ?>

1 个答案:

答案 0 :(得分:0)

假设您要包含的php文件与您正在创建的页面位于同一服务器上,请尝试按系统路径包含.php文件,这可能类似于/var/www/path/to/header.php,至少对于大多数基于unix的服务器。