Skip to content

CHICPRO

  • Life Log
  • Cycling Log
  • Photo Log
    • Portrait
    • Landscape
    • Flower
    • Etc
  • Coding Log
  • Information

Fresh & Clean 테마 검색결과 페이지에 페이징 추가하기

2013-10-06 by 편리

이 블로그에서 사용 중인 Fresh & Clean Free Minimal WordPress Theme에는 검색 결과 페이지에 페이징이 추가되어 있지 않아 검색 결과가 모두 표시되지 않는다. 그래서 퇴근하고 잠시 시간을 내서 코드를 수정했다.

fcs-paging

아래는 테마의 search.php 파일의 원래 코드이다.

<div id="post" class="col span_8 clr">

    <header id="page-heading" class="clr">
        <h1 id="search-results-title"><?php _e('Search Results For','wpex'); ?>: <?php the_search_query(); ?></h1>
    </header><!-- #page-heading -->

    <?php
	// Results found
	if ( have_posts() ) :
		while ( have_posts() ) : the_post();
			get_template_part( 'content', get_post_format() );
    	endwhile;
        else :
	 // No results found
	 	echo '<p>' . __('No results found for such a query.','wpex') . '</p>';
	 endif; ?>

</div><!-- #post -->

위 코드를 아래와 같이 수정한다.

<div id="post" class="col span_8 clr">

    <header id="page-heading" class="clr">
        <h1 id="search-results-title"><?php _e('Search Results For','wpex'); ?>: <?php the_search_query(); ?></h1>
    </header><!-- #page-heading -->

    <?php
	// Results found
	if ( have_posts() ) :
		while ( have_posts() ) : the_post();
			get_template_part( 'content', get_post_format() );
    	endwhile;
        echo '<div class="clear"></div>';
        wpex_pagination();
	 else :
	 // No results found
	 	echo '<p>' . __('No results found for such a query.','wpex') . '</p>';
	 endif; ?>

</div><!-- #post -->

코드를 비교해보면 아래 코드가 추가되었다.

echo '<div class="clear"></div>';
wpex_pagination();

다른 테마에서는 위와같은 방법으로 수정할 수 없다.

Post navigation

Previous Post:

SyntaxHighlighter 적용 부분의 세로 스크롤바 문제 해결법

Next Post:

코멘트 입력부분의 ckeditor 툴버튼 이미지 오류수정

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Recent Posts

  • SK 세븐모바일 유심 셀프교체
  • php 배열 연산에서 + 와 array_merge 의 차이
  • pcntl_fork 를 이용한 다중 프로세스 실행
  • 아이폰 단축어를 이용하여 주중 공휴일엔 알람 울리지 않게 하기
  • 구글 캘린더 전체일정 재동기화
  • OpenLiteSpeed 웹서버에 HTTP 인증 적용
  • OpenLiteSpeed 웹어드민 도메인 연결
  • WireGuard를 이용한 VPN 환경 구축
  • Ubuntu 22.04 서버에 OpenLiteSpeed 웹서버 세팅
  • 맥 vim 세팅

Recent Comments

  • 편리 on 업무관리용 그누보드 게시판 스킨
  • 임종섭 on 업무관리용 그누보드 게시판 스킨
  • 캐논 5D 펌웨어 | Dslr 펌웨어 업그레이드 방법 82 개의 베스트 답변 on 캐논 EOS 30D 펌웨어 Ver 1.0.6 , EOS 5D 펌웨어 Ver 1.1.1
  • Top 5 캐논 5D 펌웨어 Top 89 Best Answers on 캐논 EOS 30D 펌웨어 Ver 1.0.6 , EOS 5D 펌웨어 Ver 1.1.1
  • 편리 on 워드프레스 애니메이션 gif 파일을 mp4로 변환하여 출력하기
  • 임팀장 on 워드프레스 애니메이션 gif 파일을 mp4로 변환하여 출력하기
  • 편리 on Notepad++ NppFTP 플러그인 수동 설치
  • paul-j on Notepad++ NppFTP 플러그인 수동 설치
  • YS on Windows 10 iCloud 사진 저장 폴더 변경
  • 편리 on Docker를 이용한 Centos7 + httpd + php 5.4 개발환경 구축

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
© 2025 CHICPRO | Built using WordPress and SuperbThemes