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;