Wordpress PHP - 最近的帖子在主页上显示图像

时间:2012-06-15 13:50:22

标签: image show

这是我页面顶部的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 ?>

我希望能够看到与文字一起发布的图片,如何在我的主页上显示博客帖子中的任何其他内容?

0 个答案:

没有答案