<?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>attributes &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/attributes/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:28:17 +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>Create and Customize an Archives Page</title>
		<link>https://diythemes.com/thesis/rtfm/create-customize-archives-page/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Fri, 12 Feb 2010 14:25:02 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[archive list]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[attributes]]></category>
		<category><![CDATA[page template]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=679</guid>

					<description><![CDATA[<ul>
<li>Create the Archives Page</li>
<li>Customize the Archives Page</li>
</ul>]]></description>
										<content:encoded><![CDATA[<p>An Archives Page displays a summary of all the available archives on your site (i.e., a list of all your monthly archives by month, a list of all your category archives by category, and so on).</p>
<h3 id="create">Create the Archives Page <a href="#create" title="Link to this section">∞</a></h3>
<ol>
<li>Go to <em>Pages > Add New</em>.</li>
<li>Give a title to the Page (such as <em>Archives</em>).</li>
<li>Under <em>Attributes > Template</em>, choose &#8220;Archive&#8221; from the drop down selector.</li>
<li>Publish the Page.</li>
</ol>
<h3 id="customize">Customize the Archives Page <a href="#customize" title="Link to this section">∞</a></h3>
<p>By default, the Thesis Archives Page will display two types of archives lists: the first by month, and the second by category. If you wish to customize this page, you will need to replace the default display, using a custom function and the <code>thesis_hook_archives_template</code> hook.</p>
<p>Here is an example of a custom function (based on the Thesis default code for this template) which adds post counts next to each of the archives in each list:</p>
<pre class="php">
function my_archives_template() {
?&gt;
	&lt;h3 class=&quot;top&quot;&gt;&lt;?php _e('By Month:', 'thesis'); ?&gt;&lt;/h3&gt;
		&lt;ul&gt;
			&lt;?php wp_get_archives('type=monthly&amp;show_post_count=1'); ?&gt;
		&lt;/ul&gt;
	&lt;h3&gt;&lt;?php _e('By Category:', 'thesis'); ?&gt;&lt;/h3&gt;
		&lt;ul&gt;
			&lt;?php wp_list_categories('title_li=0&amp;show_count=1'); ?&gt;
		&lt;/ul&gt;
&lt;?php
}

remove_action('thesis_hook_archives_template', 'thesis_archives_template');
add_action('thesis_hook_archives_template', 'my_archives_template');
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Using the No Sidebars Template for Pages</title>
		<link>https://diythemes.com/thesis/rtfm/using-no-sidebars-template-pages/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 27 Jul 2009 14:47:32 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[attributes]]></category>
		<category><![CDATA[no sidebars]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[template]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=457</guid>

					<description><![CDATA[How to specify that the "No Sidebars" template be used for certain Pages.]]></description>
										<content:encoded><![CDATA[<p>Thesis provides a &#8220;No Sidebars&#8221; template which you can use when you have particular Pages on which you do not wish to display your sidebars.</p>
<p>On the <strong>Edit Page</strong> subpanel, look for the <em>Attributes</em> section (usually on the right hand side, unless you&#8217;re viewing on a small screen).</p>
<p>In the &#8220;Template&#8221; drop down selector in that section, choose <code>No Sidebars</code>. Then click the &#8220;Update Page&#8221; button (or &#8220;Publish&#8221;, if you&#8217;re creating a new page rather than updating an existing one).</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
