0
我有一些代碼從Wordpress的後端檢索頁面。我使用post_id來檢索它。問題是,當我修改頁面內容時,更改有一個新的帖子ID。是否有檢索頁面的最新版本的好方法?標題永遠不會改變。檢索最新頁面修訂版的Wordpress問題
此外我正在訪問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;
是的。我的代碼可能是錯誤的,但它沒有檢索最新的文章修訂。儘管我現在都在努力。再次感謝。 – 2012-04-26 21:26:58