WordPress 最新文章 JSON输出(API)
以JSON方式输出最新文章的代码 // include our wordpress functions // change relative path to find your WP dir define('WP_USE_THEMES', false); require('./wp-config.php'); $wp->init(); $wp->parse_request(); $wp->query_posts(); $wp->register ... (more...)