최근글 모아보기 이미지 있는 글만

안녕하세요 . 검색해봐도 내용이 없는듯 하여 질문 드립니다.

최근글 모아보기 할때 이미지 있는글만 불러 오는 방법이 궁금 합니다.

 

현재 최근글 보기화면에서 픽 갤러리 사용하고 있는데 (참고: http://5060todak.com/test2222/)

이미지 없는 글이 많다보니 좀 보기가 안좋네요

이미지 있는 글만 최근글에 노출 되게 하면 좋을것 같습니다.

 

감사합니다. 편안한 주말 보내시구요!

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
  • 안녕하세요~^^

    FTP로 접속해서 /wp-content/plugins/kboard/skin/pic-gallery/latest.php 파일에

    아래의 코드를 찾아서

    <div class="kboard-pic-gallery-latest-item">
    	<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document" class="kboard-pic-gallery-latest-thumbnail">
    		<?php if($resize_img_src):?>
    		<img src="<?php echo $resize_img_src?>" alt="">
    		<?php else:?>
    		<i class="icon-picture"></i>
    		<?php endif?>
    	</a>
    	<div class="kboard-pic-gallery-latest-title">
    		<p class="cut_strings"><a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document"><?php echo $content->title?></a></p>
    	</div>
    </div>

    아래의 코드로 교체해보세요.

    <?php if($resize_img_src):?>
    <div class="kboard-pic-gallery-latest-item">
    	<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document" class="kboard-pic-gallery-latest-thumbnail">
    		<img src="<?php echo $resize_img_src?>" alt="">
    		<i class="icon-picture"></i>
    	</a>
    	<div class="kboard-pic-gallery-latest-title">
    		<p class="cut_strings"><a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document"><?php echo $content->title?></a></p>
    	</div>
    </div>
    <?php endif?>

    근복적으로 해결하려면 코드를 많이 수정하고 개발해야 할 듯합니다.

    고맙습니다.

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요