<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>admin link &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/admin-link/feed/" rel="self" type="application/rss+xml" />
	<link>https://diythemes.com/thesis/rtfm</link>
	<description>Documentation, How-tos, and Best Practices for the Thesis WordPress Theme System</description>
	<lastBuildDate>Sun, 27 Jan 2013 18:30:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Show Administration Links</title>
		<link>https://diythemes.com/thesis/rtfm/show-administration-links/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Wed, 24 Jun 2009 14:44:54 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[admin link]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[edit links]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[show]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=404</guid>

					<description><![CDATA[<ul>
<li>Edit Post or Comment Links</li>
<li>WordPress Admin Panel Link</li>
</ul>]]></description>
										<content:encoded><![CDATA[<p>Thesis provides you with options for showing two different types of administrative links: edit links for posts or comments; and a link to access your WordPress admin panel.</p>
<h3 id="edit_links">Edit Post or Comment Links <a href="#edit_links" title="Link to this section">∞</a></h3>
<p>Edit links appear for each post, page, or comment on your site, giving you a quick shortcut to their <em>Edit page</em> within your WordPress Dashboard. These links appear only when you&#8217;re already logged in, and so they are not visible to readers of your site (unless they too are Admins with Edit permissions on your blog).</p>
<p>To disable edit post links, go to the <strong>Design Options</strong> panel and under <em>Display Options : Administration</em>, uncheck &#8220;Show edit post links&#8221;.</p>
<p>To disable edit comment links, go to the <strong>Design Options</strong> panel, and under <em>Comment Options : Comments : Comment Meta</em>, uncheck the &#8220;edit comment link&#8221; item.</p>
<h3 id="admin_panel">WordPress Admin Panel Link <a href="#admin_panel" title="Link to this section">∞</a></h3>
<p>A link to the WordPress Admin Panel appears in the footer area of each page on your site. To disable this link, go to the <strong>Design Options</strong> panel and under <em>Display Options : Administration</em>&#8220;, uncheck &#8220;Show admin link in footer&#8221;.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Customize the Footer</title>
		<link>https://diythemes.com/thesis/rtfm/customize-footer/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 04 May 2009 12:20:58 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[admin link]]></category>
		<category><![CDATA[attribution]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[logout]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=204</guid>

					<description><![CDATA[<ul>
<li>Remove Thesis Attribution</li>
<li>Add Copyright</li>
<li>Place Admin Link on Same Line as Attribution</li>
<li>Display Category List</li>
</ul>]]></description>
										<content:encoded><![CDATA[<p><strong>IMPORTANT:</strong> Unless you have purchased the Developer&#8217;s Option, you must leave the attribution link and its wording intact. In other words, the following code must appear in your footer AS IS:</p>
<pre class="html">
&lt;a href=&quot;https://diythemes.com/thesis/&quot;&gt;Thesis WordPress Theme&lt;/a&gt;
</pre>
<h3 id="remove_attribution">Remove Thesis Attribution <a href="#remove_attribution" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
remove_action('thesis_hook_footer', 'thesis_attribution');
</pre>
<h3 id="copyright">Add Copyright <a href="#copyright" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function copyright() {
		echo '&lt;p&gt;Copyright &amp;copy; 2008&amp;ndash;' . date('Y') . '&lt;/p&gt;';
}
add_action('thesis_hook_footer', 'copyright', '99');
</pre>
<h3 id="admin_attribution">Place Admin Link on Same Line as Attribution <a href="#admin_attribution" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function my_footer() {
	echo '&lt;p&gt;Get smart with the &lt;a href=&quot;https://diythemes.com/thesis/&quot;&gt;Thesis WordPress Theme&lt;/a&gt; from DIYthemes. ';
	wp_loginout();
	echo '&lt;/p&gt;';
}
remove_action('thesis_hook_footer', 'thesis_attribution');
add_action('thesis_hook_footer', 'my_footer');
</pre>
<h3 id="category_list">Display Category List <a href="#category_list" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function footer_cats() {
echo '&lt;ul&gt;';
wp_list_categories('title_li=');
echo '&lt;/ul&gt;';
}
add_action('thesis_hook_footer', 'footer_cats',99);
</pre>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom #footer {
  text-align:center;
}
.custom #footer ul,
 .custom #footer li {
  display:inline;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
