从侧面回答你的问题,你是否有其他选择?我建议在帖子中添加一张照片,为您的图像将帖子归档到特定类别下,或者根据您的需要,添加一个仅文本的自定义字段来检索特定图像。
$image = get_posts(\'cat=the_category&meta_key=the_key&meta_value=the_value\');
foreach($image as $img){
setup_postdata($img);
//whatever your markup is...
echo \'<p>\'.the_content().\'</p>\';
//or
echo \'<p>\'.$img->post_content.\'</p>\';
}
只是一个想法。。。