このコード スニペットを取得して、配列内の各画像に対して個別の og:image メタ タグを出力しようとすると問題が発生します。
<?php function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){
//Defines a default image
$first_img = "http://example.com/images/fbthumb.jpg";
}
return $first_img;
}
?>
現在、コードは最初に一致した img src タグを返していますが、使用する共有イメージを選択できるように、それらすべてを個別のタグとして返したいと考えています。
私はこの行を知っています:
$first_img = $matches [1] [0];
条件ごとに何らかのタイプに変更する必要がありますが、方法がわかりません。どんな助けでも大歓迎です。ありがとう!
編集:
最後の提案の後の私のコードは次のとおりです。
<?php function catch_that_image() {
global $post, $posts;
$result = preg_match_all('#<img.+src=[\'"]([^\'"]+)[^>]*>#i', $post->post_content, $matches);
return $matches[1];
}
?>
" />
私はまだそれを理解することはできません。何か案は?