Wordpress PHP在使用file_get_contents时注释掉了

时间:2015-02-19 13:18:32

标签: php html wordpress file-get-contents

以下wordpress短代码放置在single.php

内时表现正常
<?php echo do_shortcode( '[contact-form-7 id="13" title="KB EN Contact"]' ); ?>

但是,将其放在另一个文件中并使用:

<?php echo file_get_contents("en-contact.php", 1);?>

php显示为已注释掉的HTML。正确显示周围的HTML元素。

<section id="contact-after-post" class="clearfix">
    <h3 id="contact-after-post-title">Didn't find what you were looking for?</h3>
      <div id="contact-after-post-number">
      </div>
      <div id="contact-after-post-number-click">
        <div id="number-left">
        </div>
        <div id="number-right">
        </div>
      </div>
      <div id="contact-after-post-form">
<!--?php echo do_shortcode( '[contact-form-7 id="13" title="KB EN Contact"]' ); ?-->
      </div>
</section>

为什么会这样?为什么行为会随外部文件而改变?

1 个答案:

答案 0 :(得分:0)

而不是file_get_contents(),你可以尝试include()函数。

代码:

<?php include("en-contact.php");  ?>