1. 정확한 제품 또는 플러그인 이름
케이보드
2. 상세 내용
http://www.ntllab.com/ko/sub02/05.php (여기 검사항목조회 케이보드에 대한 내용을 )
http://www.ntllab.com/ko/ (메인에 나와있는 검사항목조회처럼 바로 서치만 가능하게 만들수 있을까요?)
3. 확인 가능한 상세 페이지 주소
http://www.ntllab.com/ko/sub02/05.php
http://www.ntllab.com/ko/
4. 수정한 코드 내역 (있다면)
안녕하세요~^^
KBoard는 get 파라미터로 검색 결과를 표시하며
form 태그로 검색어와 검색 대상을 설정할 수 있습니다.
add_shortcode 함수를 활용한 예제 코드는 아래와 같습니다.
add_shortcode('kboard_custom_search_form', function(){
$html = '';
ob_start();
?>
<form action="<?php echo esc_url(get_permalink(9999))?>" method="get"> // 9999에 게시판이 입력된 페이지 ID
<input type="hidden" name="target" value="kboard_option_메타키">
<input type="text" name="keyword" value="" placeholder="검색어 입력">
<button type="submit">검색</button>
</form>
<?php
$html = ob_get_clean();
return $html;
});
엘리멘터 혹은 템플릿 등에서 해당 위치에
숏코드 [kboard_custom_search_form] 를 입력해주세요.
css나 추가적인 수정은 직접 해주시거나 수정이 어려우시다면
프로젝트 의뢰에 남겨주세요.
자세한 옵션 검색 가이드는 아래 링크에서 확인하실 수 있습니다.
https://m.blog.naver.com/chan2rrj/221264876651
고맙습니다.