呈现textarea wordpress中的帖子内容?

时间:2019-03-17 18:37:43

标签: php wordpress

我尝试使用文本区域中的格式内容来检索帖子内容。 但是,如果我使用所有已知的php函数,我的文本区域就会显示pbr标签事件。

我的变量:

$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>

在文本区域之外,文本显示良好。

如何正确呈现内容? 谢谢

2 个答案:

答案 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(']]>', ']]&gt;', $content);