从WordPress帖子显示图像

时间:2016-12-13 23:36:19

标签: php mysql wordpress loops wordpress-theming

我有一个循环 - 它正在从类别ID#4中提取所有帖子。我想上传图片但不在我写帖子时插入它。我该如何制作它以便我可以拉出我为每个帖子上传的图像,因为它在循环中?

<?php query_posts('cat=4'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<h2><?php the_title(); ?></h2>
<h3><?php the_content(); ?></h3>

<?php endwhile; endif; ?>

1 个答案:

答案 0 :(得分:0)