워드프레스 post를 carousel 형태로 커스터마이징 하려다 기획이 수정되었다.
여기다 갈무리해둬야징
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'post_type' => 'post',
'orderby' => 'date',
'order' => 'DESC',
'posts_per_page' => 3,
'category_name' => 'latest-news',
'post_status' => 'publish',
'paged' => $paged
);
$the_query = new WP_Query($args);
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
$imgThumb = wp_get_attachment_image( get_post_thumbnail_id( $the_query->ID ), "", "", array( "class" => "img-responsive" ) );
//없으면 $imgThumb = ( !empty($imgThumb) ) ? $imgThumb[0] : get_bloginfo('template_url') . '/assets/img/img-default-blog-thumbnail.gif';
?>
<div class="index_blog_wrap">
<figure><?php echo $imgThumb; ?></figure>
<div class="index_blog_desc">
<a href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
<div class="index_blog_desc_text">
<span class="quote"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/quote.png" alt="quote"></span>
<?php the_excerpt(); ?>
</div>
</a>
</div>
</div>
<?php
endwhile;
?>
<?php
wp_reset_postdata();
endif;
?>
'Wordpress > 워드프레스 노하우' 카테고리의 다른 글
워드프레스 이전작업, 복사작업 후 db 테이블 변경 쿼리 (0) | 2017.09.25 |
---|---|
Kboard 특정 게시판 리스트 정렬 순서 (0) | 2017.09.07 |
멀티사이트 prefix 디렉토리 설정일때 (0) | 2017.09.06 |
워드프레스 페이지 body에 slug 명 추가하기 (0) | 2017.08.31 |
워드프레스 구글지도 언어변경 (0) | 2017.08.25 |
워드프레스 Dashicons 사용 (0) | 2017.08.25 |
워드프레스 가비아 호스팅 FTP 정보입력 해제 (0) | 2015.01.14 |
워드프레스 업로드 용량 늘리기 (5) | 2015.01.07 |
워드프레스 닷홈 유효하지 않은 글 타입 해결방법 (0) | 2014.12.29 |
워드프레스 스팸입니다. (카페24) (2) | 2014.10.14 |