<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[회원관리 플러그인 관리자 외 회원들에게는 워드프레스 바 숨기기]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/55927</link>
		<description><![CDATA[<p><img alt="" src="https://i.imgur.com/f3gtDYw.png" style="border-style:solid;border-width:1px;" /></p>

<p>안녕하세요. </p>

<p>위 이미지에서 상단 검정색 바(워드프레스 바)를 회원들에게는 노출하지 않는 방법이 있을까요?</p>

<p>관리자로 로그인했을때는 보였으면 합니다. </p>

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

워드프레스 어드민 바(Admin Bar)를 관리자에게만 표시되게 하시려면

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

<p>워드프레스 어드민 바(Admin Bar)를 관리자에게만 표시되게 하시려면</p>

<p>아래의 코드를 추가해보세요.</p>

<pre>
<code class="language-php">add_filter('show_admin_bar', 'show_admin_bar_20211022');
function show_admin_bar_20211022() {
	if(current_user_can('activate_plugins')){
		return true;
	}
	return false;
}</code></pre>

<p>테마의 functions.php 파일에 코드를 추가하거나 <a href="https://ko.wordpress.org/plugins/code-snippets/" target="_blank">Code Snippets</a> 플러그인을 사용해서 코드를 추가할 수 있습니다.</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Fri, 22 Oct 2021 05:08:56 +0000</pubDate>
			<category>우커머스(WooCommerce)</category>
		</item>
			</channel>
</rss>