我有点麻烦the_content()
处理附件。php。我有一个包含基本循环和简单调用的模板页面the_content()
在循环中显示帖子。
场景1用模板文件加载附件页single.php
它将输出图像标签并运行它prepend_attachment
.
场景2用模板文件加载附件页attachment.php
它不会从the_content()
. 我还验证了它没有调用prepend\\u附件或\\u内容过滤器。
有人能解释一下这是怎么回事吗?
<?php
if (have_posts()) : while (have_posts()) : the_post();
the_content();
endwhile; endif;
?>