contents.php
파일에
<?//php the_content(__('Continue reading', 'harmonux') . ' <i class="fa fa-angle-right"></i>'); ?>
이 부분을 지우고 아래 것으로 변경
<?php the_excerpt(); ?>
그런데 변경하는 55자로 나오기 대문에
20 자로 줄이고 싶으면 funtions.php 파일에 아래 내용 추가
=======================================================
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
===================================================
워드 프레스 특성 이미지는
wp_postmeta
테이블에
post_id 와 meta_key 중 _thumbnail_id 과 meta_value
로 뽑을 수 있다.
|