1. 정확한 제품 또는 플러그인 이름
모던갤러리
2. 상세 내용
모던갤러리 게시판에 글을 올리면 리스트에 잘나오는데 공지사항 체크버튼을 체크하면 게시글이 리스트에서 사라짐니다.
https://kr.leadigmgroup.com/?page_id=243
latest.php파일내용만 수정했는데 그게 문제가 될까요?
<style type="text/css">
.more-button {background-color: #1a345e;}
.more-button:hover {background-color: #dddddd;}
.news-contents { width: 90%; }
</style>
<div id="kboard-modern-gallery-latest">
<?php while($content = $list->hasNextNotice()): $resize_img_src = $content->getThumbnail(600, 400);?>
<div class="kboard-modern-gallery-latest-item news-container">
<img class=" news-box" src="<?php echo $resize_img_src?>" width="100%">
<div class="news-box">
<p class="kboard-modern-gallery-latest-title kboard-modern-gallery-cut-strings">
<a class="news-title" href="<?php echo esc_url($url->getDocumentURLWithUID($content->uid))?>"><?php echo $content->title?></a>
</p>
<br>
<span class="news-contents"> <?php echo mb_strimwidth(strip_tags($content->content), 0, 200, '...', 'utf-8')?></span>
<br><br><input class="more-button" type="button" value="+" onclick="location.href='<?php echo esc_url($url->getDocumentURLWithUID($content->uid))?>'" style="border-radius: 30px; width:47px; font-weight:700; color: #fff; font-size: 30px; padding: 0px; border: none; cursor: pointer; padding-bottom: 3px;">
</div>
</div>
<?php endwhile?>
</div>
3. 확인 가능한 상세 페이지 주소
4. 수정한 코드 내역 (있다면)