段落标记和get_page_by_title()

时间:2013-02-05 20:27:53

标签: wordpress wordpress-theming

我正在使用$page = get_page_by_title('$name');来显示要显示的页面的比赛。但是,当我使用echo $page->post_content;时,段落在p标记中不是 wrap ,就像在wordpress循环中使用the_content()时一样。有没有办法解决这个或更好的方法来获取将有标签的内容?

1 个答案:

答案 0 :(得分:1)

post_content的值与用户放置在帖子编辑器中的未格式化输入相同。为了获得格式化的输出,您必须应用适当的过滤器。

echo apply_filters('the_content', $page->post_content);

这应该将适当的输出过滤器应用于post_content字段,并为您提供与the_content()通常相同的值。