게시판 본문에서 댓글 아래 부분에 리스트 변경 문의

현재 게시판 본문에서 댓글 아래쪽에 보면 왼쪽 오른쪽으로 해서 제목이 하나씩 표시 되어 해당 제목을 누르면

그 글 본문으로 들어가게 되어 있습니다.

이거를 게시판 리스트 처럼 보이게 하고 싶은데 어느 부분을 수정 해야 하면 되나요?

리스트처럼이 아니라도 제목으로 아래쪽으로 나오게 하는 방법이 있을까요?

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
  • 안녕하세요~^^

    말씀하신 부분은 게시글 본문 페이지에 표시되는

    이전 글, 다음 글을 말씀하시는 듯합니다.

     

    스킨에 따라 코드가 다를 수 있지만

    디폴트(Default) 스킨을 기준으로 해당 코드는

    FTP로 접속해서 /wp-content/plugins/kboard/skin/사용중인스킨/document.php 파일에

    아래의 코드로 표시하고 있습니다.

    <div class="kboard-document-navi">
    	<div class="kboard-prev-document">
    		<?php
    		$bottom_content_uid = $content->getPrevUID();
    		if($bottom_content_uid):
    		$bottom_content = new KBContent();
    		$bottom_content->initWithUID($bottom_content_uid);
    		?>
    		<a href="<?php echo esc_url($url->getDocumentURLWithUID($bottom_content_uid))?>" title="<?php echo esc_attr(wp_strip_all_tags($bottom_content->title))?>">
    			<span class="navi-arrow">«</span>
    			<span class="navi-document-title kboard-default-cut-strings"><?php echo wp_strip_all_tags($bottom_content->title)?></span>
    		</a>
    		<?php endif?>
    	</div>
    	
    	<div class="kboard-next-document">
    		<?php
    		$top_content_uid = $content->getNextUID();
    		if($top_content_uid):
    		$top_content = new KBContent();
    		$top_content->initWithUID($top_content_uid);
    		?>
    		<a href="<?php echo esc_url($url->getDocumentURLWithUID($top_content_uid))?>" title="<?php echo esc_attr(wp_strip_all_tags($top_content->title))?>">
    			<span class="navi-document-title kboard-default-cut-strings"><?php echo wp_strip_all_tags($top_content->title)?></span>
    			<span class="navi-arrow">»</span>
    		</a>
    		<?php endif?>
    	</div>
    </div>

     

    말씀하신 "리스트처럼"이 어떤 건지는 이해가 잘 가지 않습니다.

    위의 코드를 참고하셔서 수정해보시겠어요?

    레이아웃 수정 시 HTML, CSS에 대해 알면 도움이 됩니다.

    고맙습니다.

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기