如何在 wordpress 中访问图像 link 下的元值

how to access meta value under image link in wordpres

**meta_value**:a:1:{i:0;s:105:"http://localhost/wordpress/wp-content/uploads/event-manager-uploads/event_banner/2020/07/diabetic_1-3.jpg";}

meta_key:_event_banner

while($res = mysqli_fetch_array($query)) 
                {
                    $i++;
                    // $img_src=wp_get_attachment_image_src(get_post_thumbnail_id($res['image']));
                    // $img_src_url=$img_src[0];
                    $id=$res['post_id'];
                    $post = get_post($res['post_id'] );
             
                  ?>
                    <div class="maindiv">
                  <div class="notification">
                      <img src="<?php echo wp_get_attachment_url( get_post_thumbnail_id($id) );?>"></td>
                  <img src="<?php echo $post->_event_banner;?>"></td> 
                  </div>
                  <div class="notification1">
                  <h2><a href="<?php echo $res['permalink'] ?>"><?php echo $res['post_title']?></a></h2>
                  <h6><?php echo $res['date']?></h6>
              </div>
            </div>
                <?php
            }

如何显示图像给我一些参考我需要有关如何在元键使用和过滤器中访问图像的帮助我不知道元键使用给我一些想法。 ..非常重要

所以不确定您最初是如何保存 meta_key 的?看起来您拥有的是一个序列化数组,其中只有一个数字索引条目。所以你可能想要做的是更改保存的位置以仅存储 URL?

也就是说,您可以像这样访问该元值:

$banner_src = maybe_unserialize( get_post_meta( $post->ID, '_event_banner', true ) );
$banner_src = is_array( $banner_src ) ? $banner_src[0] : $banner_src;

然后显示如下横幅:

<img src="<?php echo $banner_src; ?>" />