워드프레스 검색 결과 개수 표시하기

Last Updated: 2016년 03월 25일 | | 1개 댓글

다음과 같은 코드를 사용하여 워드프레스에서 검색 결과가 포함된 글의 개수를 표시할 수 있습니다.

$mySearch =& new WP_Query("s=$s & showposts=-1");
$NumResults = $mySearch->post_count;

위의 코드를 search.php의 적절한 곳에 추가하도록 합니다. 그러면 다음과 같이 개수를 표시할 수 있습니다.
Display the number of search results in WordPress

참고:


1 개 댓글

Leave a Comment