我使用Wordpress插件高级自定义字段将数据绑定到一个帖子中。
以下是我对其中一个关系的查询:
<?php $notes = get_field('episode_notes'); ?>
<?php if(!empty($notes)): ?>
<?php foreach($notes as $note): ?>
<div class="note"><?php echo $note->post_content); ?></div>
<?php endforeach; ?>
<?php endif; ?>
返回post_content
时没有任何段落/换行符(虽然斜体,粗体等似乎没问题)。我没有全面成功地尝试过这个:
<?php echo str_replace('\r','<br>', $note->post_content); ?>
我需要做些什么不同的事情?