检索最新页面修订版的Wordpress问题

时间:2012-04-23 15:27:52

标签: php wordpress revision revision-history

我有一些代码可以从Wordpress的后端检索页面。我使用post_id来检索它。问题是,当我修改页面内容时,更改会有一个新的帖子ID。有没有一种很好的方法来检索页面的最新版本。标题永远不会改变。

我也在Wordpress之外访问这些页面。

                $pagelisting = $_GET['pagelisting'];
                require( '../blog/wp-load.php' );
                define('WP_USE_THEMES', false);
                query_posts('showposts=1');

                $post_id = 195;
                $queried_post = get_post($post_id);
                $title = $queried_post->post_title;

                $content = $queried_post->post_content;
                $content = apply_filters('the_content', $content);

                echo $content;

1 个答案:

答案 0 :(得分:2)

具有原始帖子ID的帖子是当前帖子,您将看到它有post_status ='publish',修订版的post_parent与原始帖子ID匹配,帖子状态为“inherit”。

我希望这会有所帮助。 /彼得