이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Supasearch

설명

Supasearch enhances the default WordPress search.

The Supasearch plugin allows users to quickly and easily enhance the default search provided by WordPress. Just install and activate this plugin to have an immediately improved site search.

Features include:

  • Misspellings. If no results are found for a search term the plugin which check if the word is misspelt and provide results for the corrected word.
  • Did you mean?. If no results are found the plugin will offer a similar alternative for the user to search against.

설치

  1. Upload supasearch to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Place <?php if( class_exists( 'Supasearch_Public' ) ) { Supasearch_Public::misspelling( get_search_query(), 'Showing results for <span>', '</span>' ); } ?> in your search results template
  4. Place <?php if( class_exists( 'Supasearch_Public' ) ) { Supasearch_Public::did_you_mean( get_search_query(), 'Did you mean: <span>', '</span>' ); } ?> in your search results template “Nothing Found” section

FAQ

How to I display the misspelling feature in my theme?

Place the following code in your search results template, typically the search.php file within your theme:

<?php if( class_exists( 'Supasearch_Public' ) ) { Supasearch_Public::misspelling( get_search_query(), 'Showing results for <span>', '</span>' ); } ?> 
What about foo bar?

Place the following code in your template which renders when nothing is found, typically the template-parts/content-none.php file within your theme:

<?php if( class_exists( 'Supasearch_Public' ) ) { Supasearch_Public::did_you_mean( get_search_query(), 'Did you mean: <span>', '</span>' ); } ?> 

후기

모든 1 평가 읽기

기여자 & 개발자

“Supasearch”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Supasearch”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

0.2.0-beta

Release Date: October 31, 2016

  • Correction logic update to use previous popular queries.
  • Settings added to control accuracy previous popular queries.

0.1.0-beta

Release Date: October 17, 2016

  • Beta release featuring misspellings and did you mean suggestions to enhance the default WordPress search.