Wordpress PHP 在使用 file_get_contents 时被注释掉
Wordpress PHP commented out when using 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>
为什么会这样?为什么行为会随外部文件而改变?
而不是 file_get_contents(),您可以尝试 include() 函数。
代码:
<?php include("en-contact.php"); ?>
以下 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>
为什么会这样?为什么行为会随外部文件而改变?
而不是 file_get_contents(),您可以尝试 include() 函数。
代码:
<?php include("en-contact.php"); ?>