以下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>
为什么会这样?为什么行为会随外部文件而改变?
答案 0 :(得分:0)
而不是file_get_contents(),你可以尝试include()函数。
代码:
<?php include("en-contact.php"); ?>