<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[게시판에 1일 1글쓰기만 가능하게 할 수 있을까요?]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/22660</link>
		<description><![CDATA[<p>하루에 한번만 글을 등록 할 수 있게 바꿀 수 있을까요?</p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요~^^

글 쓰기 권한이 로그인 사용자로 설정되어 있다면

워드프레스 관리자 -&amp;gt; 외모 -...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/22668</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>글 쓰기 권한이 로그인 사용자로 설정되어 있다면</p>

<p>워드프레스 관리자 -&gt; 외모 -&gt; 테마 편집기 페이지에서 functions.php 파일 하단에</p>

<p>아래의 코드를 추가해보시겠어요?</p>

<pre>
<code class="language-php">add_action('kboard_pre_document_insert', 'my_kboard_pre_document_insert', 10, 4);
function my_kboard_pre_document_insert($content_uid, $board_id, $content, $board){
	global $wpdb;
	if(!$board-&gt;isAdmin()){
		$user_id = get_current_user_id();
		$count = $wpdb-&gt;get_var("SELECT COUNT(*) FROM `{$wpdb-&gt;prefix}kboard_board_content` WHERE `member_uid` = '$user_id'");
		
		if($count){
			die("&lt;script&gt;alert('오늘은 더 이상 등록할 수 없습니다.'); history.go(-1);&lt;/script&gt;");
		}
	}
}</code></pre>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Thu, 24 May 2018 02:18:35 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>