이전글이 없습니다. 다음글이 없습니다. 표시되게 어떻게..

안녕하세요~

케이보드 너무 너무 좋네요...

커뮤니티에서 많이 배우고 있습니다.^^

 

본문보기에서 아래쪽에 이전글 다음글이 나오는데.

이전글이 없을때.. 이전글이 없습니다.

다음글이 없을때.. 다음글이 없습니다.

이거 표시하고 싶은데.. 어떻게 해야 하나요..

꼭.. 알려주세요.^^

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
  • 스킨의 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 $url->getDocumentURLWithUID($bottom_content_uid)?>">
                <span class="navi-arrow">«</span>
                <span class="navi-document-title cut_strings"><?php echo $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 $url->getDocumentURLWithUID($top_content_uid)?>">
                <span class="navi-document-title cut_strings"><?php echo $top_content->title?></span>
                <span class="navi-arrow">»</span>
            </a>
            <?php endif?>
        </div>
    </div>

     

    -- 변경 내용 --

    <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 $url->getDocumentURLWithUID($bottom_content_uid)?>">
                <span class="navi-arrow">«</span>
                <span class="navi-document-title cut_strings"><?php echo $bottom_content->title?></span>
            </a>
            <?php else:?>
            <a href="#" onclick="return false;">
                <span class="navi-arrow">«</span>
                <span class="navi-document-title cut_strings">이전글이 없습니다.</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 $url->getDocumentURLWithUID($top_content_uid)?>">
                <span class="navi-document-title cut_strings"><?php echo $top_content->title?></span>
                <span class="navi-arrow">»</span>
            </a>
            <?php else:?>
            <a href="#" onclick="return false;">
                <span class="navi-document-title cut_strings">다음글이 없습니다.</span>
                <span class="navi-arrow">»</span>
            </a>
            <?php endif?>
        </div>
    </div>

  • 와웅.~~~~~~~~~~~~~

    너무 너무 감사해요..ㅠㅠ

    지금 적용했는데 너무 너무 잘되요~

    빠른 답변에 너무 너무 (X100000) 감사드려요~^^

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