<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[특정회원이 작성한 글을 모아서 보고 싶습니다]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/39398</link>
		<description><![CDATA[<p>특정회원이 작성한 글을 모아서 보고 싶습니다</p>

<p>현재 케이보드 메뉴 중에는 이런 기능을 지원하지 않는 것 같은데</p>

<p>제가 사이트에는 무거워서 검색 기능은 해제했는데 케이보드 플러그인에서 확인할 수 있는 방법은 없을까요</p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요~^^

우선 게시판을 하나 생성하신 다음 페이지에 삽입해주세요.

그리고 아래 코드를 테마의...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/39406</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>우선 게시판을 하나 생성하신 다음 페이지에 삽입해주세요.</p>

<p>그리고 아래 코드를 테마의 functions.php 파일에 추가해주세요.</p>

<p>게시판 검색에서 사용자 이름을 검색하시면 모든 게시판에 입력된 글을 검색해 볼 수 있습니다.</p>

<p>추가 의견 있으시면 알려주세요~</p>

<pre>
<code class="language-php">add_filter('kboard_list_where', 'my_kboard_list_where_20191210', 10, 3);
function my_kboard_list_where_20191210($where, $board_id, $content_list){
	
	if($board_id == '1'){ // 실제 게시판 ID로 교체
		$keyword = kboard_keyword();
		if($keyword){
			$keyword = esc_sql($keyword);
			$where = "`member_display` LIKE '%{$keyword}%' AND (`status`='' OR `status` IS NULL OR `status`='pending_approval')";
		}
	}
	
	return $where;
}</code></pre>

<p>워드프레스 관리자 -&gt; 테마 디자인 -&gt; 테마 편집기 메뉴에서 functions.php 파일을 편집할 수 있습니다.</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Tue, 10 Dec 2019 03:08:19 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>