wordpress代码

wordpress 获取图片的代码

<div class="image-hover mb-2-6 wow fadeInUp" data-wow-delay="200ms">
                                <?php 
 $image = '';
  if ( has_post_thumbnail() ) {
            
                                  $image = get_the_post_thumbnail( $post->ID, 'large', array(
                                     // 'title' => $title_attribute,
                                     // 'alt'   => $img_alt,
                                       'alt'   => $title,
                                       'class' => 'border-radius-10',
                                       'style' => 'width:100%;'
                                    ) ) ;
                              }
                              echo $image;
                                ?>
                          </div>

------------------------------------