从使用Thrive content Builder WORDPRESS构建的页面获取页面内容

从使用Thrive content Builder WORDPRESS构建的页面获取页面内容,wordpress,Wordpress,我正在尝试创建一个显示页面内容的XML文件,以便在其他网站上使用这些页面 如果我尝试使用普通页面,我可以获得页面标题和内容: $thepost = get_post($postID); $title = $thepost->post_title; $content = $thepost->post_content; 但是我想得到一个用Thrive content Builder构建的页面的内容,这些页面不存储在post_内容中 那么,有没有办法获取此页面内容

我正在尝试创建一个显示页面内容的XML文件,以便在其他网站上使用这些页面

如果我尝试使用普通页面,我可以获得页面标题和内容:

$thepost = get_post($postID);
$title = $thepost->post_title;
$content = $thepost->post_content;
但是我想得到一个用Thrive content Builder构建的页面的内容,这些页面不存储在post_内容中

那么,有没有办法获取此页面内容