在我看来,你应该避免使用像“图像”这样的常用词。这可能会让系统感到困惑。
A.previous post on SO 使用类别ID确定了图像的使用。以下是您编辑的代码:
<?php
$your_category_ID = \'1\'
$query = new WP_Query( \'cat=$your_category_ID\' );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) : $query->the_post();
$src = wp_get_attachment_image_src( get_post_thumbnail_id($query->ID), array( 5600,1000 ), false, \'\' ); ?>
<a href=\'<?php echo $src[0]; ?>\' data-lightbox="image-77" data-title="<?php query->the_title() ?>">
<div class="item">
<div class="lazyOwl" style="background:url(<?php echo $src[0]; ?>) no-repeat center center;background-size:cover;height:300px;" alt=""></div>
</div>
</a>
endwhile;
/* Restore postdata */
wp_reset_postdata();
}
?>