我发现这可以通过使用Wordpress的页面编辑器来完成。不需要其他任何东西:
在Wordpress的页面编辑器中编写内容保存(但不发布)在代码中,检索保存的内容By ID:
$id=47;
$post = get_post($id);
$content = apply_filters(\'the_content\', $post->post_content);
echo $content;
Or by page title:
$title = \'page title\';
$page = get_page_by_title( $title );
$content = apply_filters(\'the_content\', $page->post_content);
echo $content;
请注意,如果某个地方有一个插件想要对\\u内容“应用过滤器”,则使用apply\\u过滤器-这有利于转发兼容性。