从帖子中获取所有图像,并将其添加到帖子顶部相对容易。您可以这样做:(注意,这只是一个代码示例。我并不是100%您想要的。希望这足以让您开始。)
function getImagesInThisPost() {
global $post, $posts;
//find all the <img>\'s in the post
$output = preg_match_all(
\'/<img.+src=[\\\'"]([^\\\'"]+)[\\\'"].*>/i\',
$post->post_content, //from the post content
$matches
);
//loop throuhg all the images we found, and put them on the page
foreach($matches[1] as $single){
echo "<img src=\\"{$single}\\">";
}
}