このコードスニペットを取得して、配列内の各画像に別々のog:imageメタタグを出力しようとすると、問題が発生します。FacebookのメタタグPHPの状態
<?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];
は、各条件が、イム方法がわからないのいくつかのタイプに変更する必要があります。どんな助けでも大歓迎です。ありがとう!
EDIT:?ここ
が最後の提案の後に私のコードです:
<?php function catch_that_image() {
global $post, $posts;
$result = preg_match_all('#<img.+src=[\'"]([^\'"]+)[^>]*>#i', $post->post_content, $matches);
return $matches[1];
}
>
"/>
私はまだそれを把握するカント任意のアイデア?
' * *#i'、$ post-> post_content、$ matches); foreach($ match [1] to $ match){ $ imgSources [] = $ match; } return $ imgSources; } > <メタプロパティ= "OG:画像" コンテンツ= "?"?/> ' –
brianr1