我有几部密码,从Wordpress的背部检索一页。 我利用这个员额来收回。 问题是,在我修改网页内容时,这些改动有一个新的员额。 能否收回最近几页的修订。 标题永远不会改变。
Also I am accessing these pages outside of 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;