0

这是我页面顶部的 PHP

<?php
// Include WordPress 
define('WP_USE_THEMES', false);
require('./blog/wp-load.php');
query_posts('showposts=1');
?>

然后我在我想在我的网站主页上显示最新帖子的地方有这个

      <div id="content"><?php while (have_posts()): the_post(); ?>
<?php
 $postslist = get_posts('numberposts=1');
 foreach ($postslist as $post) :
    setup_postdata($post);
 ?>
        <div class="post"><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content() ?>
</div>
<?php endforeach ?>

我希望能够看到与文本一起发布的图像,我怎样才能在我的主页上显示博客文章中的任何其他内容?

4

0 回答 0