<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[특정 사용자 역할일 경우 내용 표시 기능 관련 질문]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/61478</link>
		<description><![CDATA[<p>안녕하세요. 숏코드를 활용하여 시작태그와 종료태그 사이의 내용을 특정 Role에게만 보이도록 하고자,</p>

<p>아래 링크를 참고하여 제 자식테마 function.php에 다음과 같은 코드를 삽입했습니다.</p>

<p><a href="https://stackoverflow.com/questions/39593273/user-roles-shortcode">https://stackoverflow.com/questions/39593273/user-roles-shortcode</a></p>

<pre>
<code>function check_user_role( $atts, $content = null ) {
  extract( shortcode_atts( array(
          'role' =&gt; 'role' ), $atts ) );

  $user = wp_get_current_user();
  $allowed_roles = explode(',', $role);
  if( array_intersect($allowed_roles, $user-&gt;roles ) ) {
          return $content;
  }
}
add_shortcode( 'user_role', 'check_user_role' );

/* 숏코드 사용법
[user_role role="begginer"]content[/user_role]
*/</code></pre>

<p> </p>

<p>CSS의 display: none; 처럼 아예 DIV 요소가 공간차지도 없이 사라지길 원했지만, 아래 사진처럼 공백으로 자리를 차지하면서 보이지 않게 되어버립니다.</p>

<p><a href="https://imgur.com/a/6aQ2pTm">https://imgur.com/a/6aQ2pTm</a></p>

<p>(사진은 3개의 요소 중 가운데 요소가 위의 코드로 인해 감춰진 경우입니다)</p>

<p>$content = null 이 수식 때문에 그런 것 같은데,</p>

<p>어떻게 해야 display:none;처럼 아예 공간차지도 안 하고 없어지게 할 수 있을까요?</p>

<p> </p>

<p> </p>

<p> </p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요~^^

내용만 보아서는 content 내에 숏코드를 입력하신 듯 합니다.

 

content 내에 숏코드...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/61657</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>내용만 보아서는 content 내에 숏코드를 입력하신 듯 합니다.</p>

<p> </p>

<p>content 내에 숏코드를 입력하시는 경우</p>

<p>내용을 출력하기 위한 레이아웃이 이미 표시된 이후 이므로</p>

<p>내용만 보이지 않을 뿐 레이아웃 자체가 표시가 안되지는 않습니다.</p>

<p> </p>

<p>사용중이신 플러그인 제작사 측에 문의해보시거나</p>

<p>아래의 링크를 참고하여 함수 실행 순서에 맞게</p>

<p>필요한 지점을 찾아 적용해보시겠어요?</p>

<p><a href="https://codex.wordpress.org/Plugin_API/Action_Reference" target="_blank">https://codex.wordpress.org/Plugin_API/Action_Reference</a></p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Thu, 20 Oct 2022 07:44:01 +0000</pubDate>
			<category>워드프레스</category>
		</item>
			</channel>
</rss>