我尝试使用文本区域中的格式内容来检索帖子内容。
但是,如果我使用所有已知的php函数,我的文本区域就会显示p
和br
标签事件。
我的变量:
$content = $postdata->post_content; $event_description = apply_filters('the_content', $content);
我的文本区域:
<textarea class="form-control" rows="8" name="event_description" required><?php echo html_entity_decode($event_description);?></textarea>
在文本区域之外,文本显示良好。
如何正确呈现内容? 谢谢
答案 0 :(得分:0)
您应显示以下textarea值:
<textarea name="text"><?php echo html_entity_decode($text); ?></textarea>
它将HTML标记更改为正确的HTML设计。希望对您有帮助。
答案 1 :(得分:0)
我终于找到答案了!
我需要这样做:
$content = $postdata->post_content;
$event_description = apply_filters('the_content', $content);
$event_description = str_replace(']]>', ']]>', $content);