Wordpress:显示内容自定义页面

时间:2014-04-20 10:22:51

标签: wordpress wordpress-theming

我想使用主题文件显示特定页面的内容。 我试过这个:

$import_page = get_page_by_title(page-title-here);
echo "$import_page->post_content";

它的工作原理除了它不显示页面的格式。只有文字和图像,它避免了换行符,段落格式等。

感谢您帮助我对此进行排序。

1 个答案:

答案 0 :(得分:0)

在打印之前,您需要将the_content过滤器应用于post_content

喜欢这样

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

您可以找到有关the_content filter的更多信息。