0

このコード スニペットを取得して、配列内の各画像に対して個別の 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];

}

?>

" />

私はまだそれを理解することはできません。何か案は?

4

1 に答える 1

0

この機能を試してみてください。画像ソースの配列を返します。その後、常に配列の最初の画像をデフォルトの画像として使用できます。

function catch_that_image() {
    global $post, $posts;
    $imgSources = array();
    $result = preg_match_all('#<img.+src=[\'"]([^\'"]+)[^>]*>#i', $post->post_content, $matches);

    foreach($matches[1] as $match) {
        $imgSources[] = $match;
    }

    return $imgSources;
}

またはより簡単

function catch_that_image() {
    global $post, $posts;
    $result = preg_match_all('#<img.+src=[\'"]([^\'"]+)[^>]*>#i', $post->post_content, $matches);

    return $matches[1];
}

関数の使用:

$imageArray = catch_that_image();
foreach($imageArray as $image) {
    echo '<meta property=​"og:​image" content=​"$image">';
}
于 2012-04-17T09:24:09.077 に答える