<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[tagCloud 개수제한 제어 관련...( filter관련 )]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/11528</link>
		<description><![CDATA[<p><strong>워드프레스 4.7</strong> 사용중인 유저입니다.<br />
http://widenety.com 에 적용되어져 있구요. ( ^^.. 개인 포트폴리오 사이트입니다. )</p>

<p>1. 수정하고자 하는곳은 위 사이트의 화면 좌하단 tagCloud 입니다. 검색을 통해 알아보니 <strong>tagCloud에 나오는 태그의 최대개수는 45개</strong>로 그 한계가 고정되어져 있더군요. 45개라는 애매한 수치인것도 그렇거니와... 그렇다면 물론 그 상한선을 높이는 방법도 당연있겠지 생각했습니다.</p>

<p>2. 45개 고정부분은 찾았습니다. /wp-includes/category-template.php<br />
...<br />
function wp_tag_cloud( $args = '' ) {<br />
   $defaults = array(<br />
       'smallest' =&gt; 8, 'largest' =&gt; 22, 'unit' =&gt; 'pt', 'number' =&gt; <strong>45</strong>,<br />
       'format' =&gt; 'flat', 'separator' =&gt; "\n", 'orderby' =&gt; 'name', 'order' =&gt; 'ASC',<br />
       'exclude' =&gt; '', 'include' =&gt; '', 'link' =&gt; 'view', 'taxonomy' =&gt; 'post_tag', 'post_type' =&gt; '', 'echo' =&gt; true<br />
   );<br />
...<br />
저 <strong>45</strong> 숫자를 높이면 그 숫자만큼 태그클라우드의 태그 개수 상한선이 올라가겠죠.</p>

<p>3. 문제는 /wp-includes/category-template.php 이 파일은 건드리지 않고, /테마/function.php 문서에서 filter 를 통해 wp_tag_cloud 의 number 를 바꾸려면 어떻게 해야할까요..? 검색으로 add_filter 와 filter_apply 로 제어한다는 글들을 보긴 보았으나 아직 소양이 부족하여 계속 공부중이며, 반드시 필터관련 접근방법으로 해결하려고 하는것은 아닙니다. 다만, 워드프레스의 코어에 근접한 파일들은 ( /wp-includes/ ) 왠만해선 건드리지 않고 제어해 보고 싶습니다.</p>
]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[필터와 같은 설정은 없어 보입니다.

대신 직접 wp_tag_cloud 함수 사용 시 값을 설정할 수 있더군요.

...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/11533</link>
			<description><![CDATA[<p>필터와 같은 설정은 없어 보입니다.</p>

<p>대신 직접 wp_tag_cloud 함수 사용 시 값을 설정할 수 있더군요.</p>

<p>얘를 들면 아래처럼 말이죠.</p>

<p>wp_tag_cloud( array( 'number' =&gt; '20' ) );</p>

<p> </p>

<p>직접 /wp-includes/category-template.php 파일을 수정하지 마시고</p>

<p>실제 wp_tag_cloud 함수를 사용하고 있는 테마쪽 파일을 찾아서 수정해주셔야 할 듯합니다.</p>

<p> </p>

<p><a href="https://codex.wordpress.org/Function_Reference/wp_tag_cloud" target="_blank">https://codex.wordpress.org/Function_Reference/wp_tag_cloud</a></p>
]]></description>
			<author>스레드봇</author>
			<pubDate>Thu, 29 Dec 2016 07:59:15 +0000</pubDate>
			<category>워드프레스</category>
		</item>
			</channel>
</rss>