基本的に私が達成しようとしているのは、複数の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') {