1
WordPress의 주니어, 내 프로젝트에서 다른 슬라이더가 있고, 사용자 정의 포스트 유형을 만들어서 슬라이더로 모든 게시물을 작성하는 첨부 파일 포스트를 만들 때이 성가신 문제로 도와주세요 .. 문제 내가 원하는 경우 모든 단일 게시물을 검색하는 프론트 엔드에 표시하는 방법입니다 CPT를 많이 했어 그것에 대해 그물에 대한 검색하지만 내가 찾은 유일한 코드는 모든 게시물을 첫 번째 게시물을 무시하는 데 사용 당신이 슬라이더를 만들려면 ..이 내 코드WordPress의 사용자 정의 게시물 유형에서 단일 첨부 파일을 루프하는 방법은 무엇입니까?
<?php
$query = new WP_Query(array(
'post_type' => 'owlgalleryslider',
'posts_per_page'=> 3,
'fields' => 'ids'
));
$image_query = new WP_Query(array(
'post_type' => 'attachment',
'post_status' => 'puplish',
'post_mime_type' => 'image',
'posts_per_page' => 3,
'post_parent' => $query->id,
'order' => 'DESC'
));
?>
<?php if(have_posts()) : ?>
<?php while ($image_query->have_posts()) : $image_query->the_post(); ?>
<div class="item owl-slide"> <img src="<?php echo wp_get_attachment_url(get_the_ID()); ?>" /> </div>
<?php endwhile; wp_reset_query();?>
<? endif;?>
나는 CPT의 3 개 첨부 게시물을 원하고 그것을 통해 반복하고 싶습니다. –