基本上我想要完成的是如果有超过 1 个 img 它将回显下面的语句,所以我基本上可以有一个翻转说点击查看更多。另一个问题是,如果我将它更改为“a href”并将永久链接回显到 post_id,我将如何让它链接到帖子本身。
任何帮助将不胜感激。
function catch_images() {
global $post, $posts;
$first_image = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/ii', $post->post_content, $matches);
$first_image = $matches [2] [0];
if ($output == '2') {
echo '<div class="seemore"><img src="images/magglass.png"></div><div class="seemoretext">See More</div>';
}
}
好吧,我觉得很愚蠢,我应该只写以下内容:
if ($output > '2') {