我有一个主页,我想在其中显示两个或更多博客的最新帖子内容。。目前我有以下代码:
<?php
// Include WordPress Blog 1
define(\'WP_USE_THEMES\', false);
require(\'./blog1/wp-load.php\');
?>
<?php query_posts(\'showposts=3\');?>
<?php while (have_posts()): the_post(); ?>
some of my blog 1 stuff.. .
<?php endwhile; ?>
<?php wp_reset_query();?>
<?php
// Include WordPress Blog 2
define(\'WP_USE_THEMES\', false);
require(\'./blog2/wp-load.php\');
?>
<?php query_posts(\'showposts=3\');?>
<?php while (have_posts()): the_post(); ?>
some of my blog 2 stuff.. .
<?php endwhile; ?>
<?php wp_reset_query();?>
1号博客显示了它的内容,但2号博客没有显示内容。我如何将它们重建为一个页面,这是我的主页。。。这有可能重建吗?