カスタム投稿タイプ talent というものを作成し、サイトの下に配置するので、lazysizes.jsを使いたいため、class='lazyload'を追加したいと考えています。こちらのコードで、クラスが追加されていなかったのですが、どこが間違っているでしょうか。何卒よろしくお願いします。
<?php $args_talent = array ( 'posts_per_page' => 10, 'post_type' => 'talent', 'order' => 'desc', ); $talent_query = new WP_Query($args_talent); ?> <ul class="talent-slide"> <?php if ($talent_query->have_posts()) : while ($talent_query->have_posts()) : $talent_query->the_post();?> <li> <?php echo wp_get_attachment_image( get_post_meta($post->ID,"talent_images",true), 'mytheme-m', array( 'class'=>'lazyload' ) ); ?><?php endwhile; endif;?> </ul></li>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/07 02:26
2019/10/07 02:53
2019/10/07 02:56