ギャラリー画像を表示していますが、画像のキャプションも表示したいです。 WordPress Dashboardに "Title/Caption/ALT/Description"のような画像をアップロードしたときに挿入された情報を取得できます。誰でも手に入れて展示したいです。
<?php
$gallery = get_post_gallery_images( $post );
foreach( $gallery as $image_url ) :
?>
<div class="item" style="background-image: url('<?php echo $image_url ?>'); background-size: cover">
<div class="caption">
<!-- Here I want display the Title/Caption/ALT/Description of image -->
<h2><?php echo $image_url->"DESCRIPTION/TITLE/ALT"; ?> </h2>
</div>
</div>
get_post_gallery_imagesの文書を読む 私は自分の問題に対する解決策を見つけられなかった。
私も この答えを見つけました しかし、それがうまくいくかどうかはわかりませんし、私のコードに実装するのは誤りです。
とにかく、どうすればこれを解決できますか?
各画像のmetadata
を取得する必要があります。これをfunctions.php
ファイルに追加します。
function get_post_gallery_images_with_info($postvar = NULL) {
if(!isset($postvar)){
global $post;
$postvar = $post;//if the param wasnt sent
}
$post_content = $postvar->post_content;
preg_match('/\[gallery.*ids=.(.*).\]/', $post_content, $ids);
$images_id = explode(",", $ids[1]); //we get the list of IDs of the gallery as an Array
$image_gallery_with_info = array();
//we get the info for each ID
foreach ($images_id as $image_id) {
$attachment = get_post($image_id);
array_Push($image_gallery_with_info, array(
'alt' => get_post_meta($attachment->ID, '_wp_attachment_image_alt', true),
'caption' => $attachment->post_excerpt,
'description' => $attachment->post_content,
'href' => get_permalink($attachment->ID),
'src' => $attachment->guid,
'title' => $attachment->post_title
)
);
}
return $image_gallery_with_info;
}
このようにあなたの論理でそれを使用してください:
<?php
$gallery = get_post_gallery_images_with_info($post); //you can use it without params too
foreach( $gallery as $image_obj ) :
?>
<div class="item" style="background-image: url('<?php echo $image_obj['src'] ?>'); background-size: cover">
<div class="caption">
<!-- Here I want display the Title/Caption/ALT/Description of image -->
<h2><?php echo $image_obj['title']." ". $image_obj['caption']." ".$image_obj['description']; ?> </h2>
</div>
</div>
<?php
endforeach;
?>
それはこのように出力されます:
関数によって返される各画像は、次のような配列です。
Array
(
[alt] => Alt Coffe
[caption] => Caption coffe
[description] => Description coffe
[href] => http://yoursite/2017/02/14/hello-world/coffee/
[src] => http://yoursite/wp-content/uploads/sites/4/2017/02/coffee.jpg
[title] => coffee
)
href
とsrc
は異なります。1つはパーマリンク、もう1つは直接のURL
です。
画像のキャプションは実際には画像に付けられたmeta_dataであり、 get_post_gallery_imagesはurl のみを返すので、この配列では他に情報はありません。
あなたは以下のようなことを試すことができます:
<?php
$gallery = get_post_gallery_images( $post );
foreach( $gallery as $image_url ) :
//get the id of the image post.
$image_id = url_to_postid( $image_url )
//get the image "post" information
$image = get_post($image_id);
//get the image title
$image_title = $image->post_title;
//get the image caption
$image_caption = $image->post_excerpt;
?>
<div class="item" style="background-image: url('<?php echo $image_url ?>'); background-size: cover">
<div class="caption">
<!-- Here I want display the Title/Caption/ALT/Description of image -->
<h2><?php echo $image_caption; ?> </h2>
</div>
</div>