<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[KBoard 최신글 모아보기 제목을 보이게 할 수 있나요?]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/57243</link>
		<description><![CDATA[<p>최신 글 모아보기 제목을 유저에게 보이게 할 수 있는 방법이 있나요? </p>

<p>밑 스크린숏을 보시면 어드민에서 <em><strong>"최신 글 모아보기 이름"</strong></em>을 <em><strong>"최신 글 제목"</strong></em>이라고 썼습니다. </p>

<p><a href="https://ibb.co/gJCb04G">https://ibb.co/gJCb04G</a></p>

<p><em><strong>"최신 글 제목"</strong></em>을 모아보기 리스트 위에 표시하고 싶습니다. </p>

<p>여기 스크린숏을 보시면 어떤 결과를 말하는지 볼 수 있습니다. </p>

<p><a href="https://ibb.co/t3mVJpX">https://ibb.co/t3mVJpX</a></p>

<p>어떻게 모아보기 제목/이름을 유저에게 표시할 수 있을까요?</p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요~^^

최신글 모아보기 제목은 따로 지원하고 있지 않습니다.

다음 업데이트에 반영하기 이전...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/57257</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>최신글 모아보기 제목은 따로 지원하고 있지 않습니다.</p>

<p>다음 업데이트에 반영하기 이전에 사용가능한 코드를 먼저 안내해드리겠습니다.</p>

<p> </p>

<p>아래 코드를 테마 functions.php 또는 코드스니펫으로 입력해주세요.</p>

<pre>
<code>add_shortcode('latest_view_name', 'latest_view_name_220104');
function latest_view_name_220104($latest=array()){
	global $wpdb;
	$latest_id = isset($latest['id']) ? $latest['id'] : '';
	$get_latestview_name = $wpdb-&gt;get_var("SELECT `name` FROM `{$wpdb-&gt;prefix}kboard_board_latestview` WHERE `uid` = {$latest_id}");

	return $get_latestview_name;
}</code></pre>

<p>아래의 숏코드를 원하시는 곳에 입력해주세요.</p>

<pre>
<code>[latest_view_name id=1] // 실제 최신글 모아보기 id를 입력해주세요.</code></pre>

<p>사용하시는 스킨의 latest.php 에 입력하시려면 아래의 코드를 입력해주세요.</p>

<pre>
<code>&lt;?php echo do_shortcode("[latest_view_name id={$latest['id']}]")?&gt;</code></pre>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Tue, 04 Jan 2022 09:15:36 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>