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