<?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>Custom Wordpress Theme Design &#187; Code Snippets</title>
	<atom:link href="http://www.cimmeronstudios.com/design-blog/category/code-snippets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cimmeronstudios.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 Jan 2013 00:27:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to force child categories to use the PARENT category template in WordPress</title>
		<link>http://www.cimmeronstudios.com/design-blog/2010/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/</link>
		<comments>http://www.cimmeronstudios.com/design-blog/2010/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 21:48:54 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=450</guid>
		<description><![CDATA[<p>After much digging around and trying to find a suitable plugin or PHP if/then statement, I came across a nice little site that did it for me using the functions.php page. I would love to say I wrote this handy bit of code myself but I did not. Much praise to for the skilled coder [...]</p><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/">How to force child categories to use the PARENT category template in WordPress</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>After much digging around and trying to find a suitable plugin or PHP if/then statement, I came across a nice little site that did it for me using the functions.php page.</p>
<p>I would love to say I wrote this handy bit of code myself but I did not. Much praise to for the skilled coder at <a href="http://brassblogs.com/contact">brassblogs</a>.</p>
<p>Now, the way to use this is to take the code listed below and add it to your functions file. Or, to make it easier, <a href="http://cimmeronstudios.com/design/wp-content/uploads/2010/11/forceChildtoUseParentTemplateFunctions.txt" target="_blank">I&#8217;ve pasted the complete information into this text file</a>.</p>
<blockquote><p>
<code><br />
< ?    php</p>
<p>function inherit_template() {<br />
if (is_category()) {<br />
$catid = get_query_var('cat');<br />
if ( file_exists(TEMPLATEPATH . '/category-' . $catid . '.php') ) {<br />
include( TEMPLATEPATH . '/category-' . $catid . '.php');<br />
exit;<br />
}</p>
<p>$cat = &#038;get_category($catid);<br />
$parent = $cat->category_parent;<br />
while ($parent) {<br />
$cat = &#038;get_category($parent);<br />
if ( file_exists(TEMPLATEPATH . '/category-' . $cat->cat_ID . '.php') ) {<br />
include (TEMPLATEPATH . '/category-' . $cat->cat_ID . '.php');<br />
exit;<br />
}</p>
<p>$parent = $cat->category_parent;<br />
}<br />
}<br />
}</p>
<p>add_action('template_redirect', 'inherit_template', 1);<br />
?><br />
</code>
</p></blockquote>
<p>After you add that to your functions.php file, you simply need to make a template for EACH PARENT CATEGORY. The child categories will then use the template that their PARENT uses. YEA!</p>
<p>It&#8217;s very easy to make a category template. The simplest way is to take the existing archive.php file in your WordPress theme and save it as category-ID.php where the ID is the NUMBER of the category. You can check this by going into your wp-admin, clicking on the category and reading the complete URL for the ID= (it will be at the end of the string).</p>
<p>So, if your category is #1, you will make category-1.php. You can style this page in any way you want; you can change link colors, text colors or even make it look completely different from the rest of your WordPress blog &#8211; it&#8217;s completely up to you!</p>
<p>This will apply to all parent categories that you want to use a special template; simply find the category ID, create the page, name it category-XX.php (where XX is your category ID) and upload it to your theme folder. Or use the sample you can download <a href="http://cimmeronstudios.com/design/wp-content/uploads/2010/11/category-xx.txt" target="_blank">here</a>.</p>
<p><em>Again, credit goes to brassblogs.com! Thanks!</em></p>
<div class="shr-publisher-450"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/">How to force child categories to use the PARENT category template in WordPress</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cimmeronstudios.com/design-blog/2010/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display recent comments on your WordPress blog</title>
		<link>http://www.cimmeronstudios.com/design-blog/2010/display-recent-comments-on-your-wordpress-blog/</link>
		<comments>http://www.cimmeronstudios.com/design-blog/2010/display-recent-comments-on-your-wordpress-blog/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 17:39:01 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=439</guid>
		<description><![CDATA[<p>Sometimes you want to display a WordPress feature, such as recent comments, tags, etc., without using a widget. For me, it&#8217;s occassionally easier to STYLE, especially if I&#8217;m not using a Theme that I built or that I&#8217;m familiar with. A great code around is shown below, courtesy of to Kyle Eslick and found on [...]</p><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/display-recent-comments-on-your-wordpress-blog/">Display recent comments on your WordPress blog</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Sometimes you want to display a WordPress feature, such as recent comments, tags, etc., without using a widget. For me, it&#8217;s occassionally easier to STYLE, especially if I&#8217;m not using a Theme that I built or that I&#8217;m familiar with.</p>
<p>A great code around is shown below, courtesy of to Kyle Eslick and found on <a href="http://www.wprecipes.com/how-to-list-most-recent-comments">wprecipes</a>. I&#8217;ve used it on some sites and I find it works great. ONE NOTE: if you want less than 10 comments, simply change the code to a lesser number.</p>
<pre><code>
php
  global $wpdb;
  $sql = "SELECT DISTINCT ID, post_title, post_password,
comment_ID, comment_post_ID, comment_author,
</code><code>comment_date_gmt,comment_approved,
comment_type,comment_author_url,
SUBSTRING(comment_content,1,30) AS com_excerpt
FROM
$wpdb-&gt;comments LEFT OUTER JOIN $wpdb-&gt;posts ON
 ($wpdb-&gt;comments.comment_post_ID = $wpdb-&gt;posts.ID)
 WHERE comment_approved = '1' AND comment_type = ''
AND post_password = ''
ORDER BY comment_date_gmt DESC LIMIT 10";

  $comments = $wpdb-&gt;get_results($sql);
  $output = $pre_HTML;
  $output .= "n
</code></pre>
<pre>
<ul>";
  foreach ($comments as $comment) {
    $output .= "n
	<li>".strip_tags($comment-&gt;comment_author) .":"
 . "<a href="">ID)."#comment-" . $comment-&gt;comment_ID
. "" title="on ".$comment-&gt;post_title .
""&gt;" . strip_tags($comment-&gt;com_excerpt)."</a>

";
  }
  $output .= "n</li>
</ul>
";
  $output .= $post_HTML;
  echo $output;</pre>
<div class="shr-publisher-439"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/display-recent-comments-on-your-wordpress-blog/">Display recent comments on your WordPress blog</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cimmeronstudios.com/design-blog/2010/display-recent-comments-on-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding thumbnail support to your WordPress theme</title>
		<link>http://www.cimmeronstudios.com/design-blog/2010/adding-thumbnail-support-to-your-wordpress-theme/</link>
		<comments>http://www.cimmeronstudios.com/design-blog/2010/adding-thumbnail-support-to-your-wordpress-theme/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 00:25:42 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=396</guid>
		<description><![CDATA[<p>Yea WordPress! Starting in version 2.9, thumbnail support is built into the code, which means that instead of doing all the hard work, WordPress has done it for you! For the most part anyway&#8230; It&#8217;s a pretty simple process. 1. Add a line of code to functions.php add_theme_support('post-thumbnails'); 2. Define the size of the thumbnails [...]</p><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/adding-thumbnail-support-to-your-wordpress-theme/">Adding thumbnail support to your WordPress theme</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Yea WordPress! Starting in version 2.9, thumbnail support is built into the code, which means that instead of doing all the hard work, WordPress has done it for you! For the most part anyway&#8230;</p>
<p>It&#8217;s a pretty simple process.</p>
<p>1. Add a line of code to functions.php</p>
<p><code>add_theme_support('post-thumbnails'); </code></p>
<p>2. Define the size of the thumbnails &#8211; you have a couple options. You can hard crop it, which is what I have done in the example below (add &#8216;true&#8217; to the end of the dimensions), or you can resize the box. Box resizing shrinks an image without distortion until it fits inside the “box” you’ve specified with your dimensions.</p>
<p><code>set_post_thumbnail_size( 100, 100, true ); // 100 pixels wide by 100 pixels tall, hard crop mode</code></p>
<p>Together this will look like:<br />
<code><!--p add_theme_support('post-thumbnails'); set_post_thumbnail_size( 100, 100, true ); // 50 pixels wide by 50 pixels tall, hard crop mode--></code></p>
<p>3. Add the code to your template</p>
<p><code><!--p the_post_thumbnail();--></code></p>
<p>That&#8217;s it! Now when you login to your wp-admin panel scroll down &#8211; on the right side under &#8216;Categories&#8217;:</p>
<p><a href="http://cimmeronstudios.com/design/wp-content/uploads/2010/07/Capture.jpg"><img class="alignnone size-full wp-image-399" title="Capture" src="http://cimmeronstudios.com/design/wp-content/uploads/2010/07/Capture.jpg" alt="" width="237" height="164" /></a></p>
<p>Click on &#8216;set thumbnail&#8217; and you get this box:</p>
<p><img class="alignnone size-full wp-image-400" title="Capture2" src="http://cimmeronstudios.com/design/wp-content/uploads/2010/07/Capture2.jpg" alt="" width="417" height="110" /></p>
<p>Be sure to select &#8216;Use as thumbnail&#8217; and then &#8216;save&#8217;. Then close the window with the X on top right.</p>
<p>Here&#8217;s an example of it used on one of my sites:</p>
<p><img class="alignnone size-full wp-image-401" title="Capture" src="http://cimmeronstudios.com/design/wp-content/uploads/2010/07/Capture1.jpg" alt="" width="232" height="278" /></p>
<div class="shr-publisher-396"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/adding-thumbnail-support-to-your-wordpress-theme/">Adding thumbnail support to your WordPress theme</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cimmeronstudios.com/design-blog/2010/adding-thumbnail-support-to-your-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display WordPress Blogroll Links By Category</title>
		<link>http://www.cimmeronstudios.com/design-blog/2010/display-wordpress-blogroll-links-by-category/</link>
		<comments>http://www.cimmeronstudios.com/design-blog/2010/display-wordpress-blogroll-links-by-category/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 22:47:48 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=363</guid>
		<description><![CDATA[<p>Want to display your blogroll but maybe just a certain CATEGORY only? Such as &#8216;affiliate links&#8217; or &#8216;friends&#8217;&#8230;. It&#8217;s easy. 1. Locate the category ID number by going into the Link manager in WordPress and hovering over the category name. That should show you the ID. If that doesn&#8217;t work, click on the category name [...]</p><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/display-wordpress-blogroll-links-by-category/">Display WordPress Blogroll Links By Category</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Want to display your blogroll but maybe just a certain CATEGORY only? Such as &#8216;affiliate links&#8217; or &#8216;friends&#8217;&#8230;.</p>
<p>It&#8217;s easy.</p>
<p>1. Locate the category ID number by going into the Link manager in WordPress and hovering over the category name. That should show you the ID. If that doesn&#8217;t work, click on the category name and the ID is the number at the end of the URL.</p>
<p>2. Find the code that displays the bookmarks. It should look like this:</p>
<blockquote>
<pre>&lt;?php wp_list_bookmarks(''); ?&gt;
</pre>
</blockquote>
<p>3. Edit that code to choose the Category ID that you want to display:</p>
<blockquote><p>&lt;?php wp_list_bookmarks(&#8216;category=766&#8242;); ?&gt;</p></blockquote>
<p>That&#8217;s it!</p>
<div class="shr-publisher-363"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/display-wordpress-blogroll-links-by-category/">Display WordPress Blogroll Links By Category</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cimmeronstudios.com/design-blog/2010/display-wordpress-blogroll-links-by-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your SUBMIT button an IMAGE using HTML</title>
		<link>http://www.cimmeronstudios.com/design-blog/2010/make-your-submit-button-an-image-using-html/</link>
		<comments>http://www.cimmeronstudios.com/design-blog/2010/make-your-submit-button-an-image-using-html/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 20:08:03 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[form tricks]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=340</guid>
		<description><![CDATA[<p>Code snippets You want to use something a little bit more attractive than the standard &#8216;SUBMIT&#8217; button &#8211; even changing the text to &#8216;PUSH ME NOW&#8217; isn&#8217;t as visually appealing as a nice graphic you&#8217;ve made to match the color and theme of your site. We all know graphics help make a website jump from [...]</p><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/make-your-submit-button-an-image-using-html/">Make your SUBMIT button an IMAGE using HTML</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><h3>Code snippets</h3>
<p>You want to use something a little bit more attractive than the standard &#8216;SUBMIT&#8217; button &#8211; even changing the text to &#8216;PUSH ME NOW&#8217; isn&#8217;t as visually appealing as a nice graphic you&#8217;ve made to match the color and theme of your site. We all know graphics help make a website jump from OKAY to STUNNING! So, how do you do it?<span id="more-340"></span><strong></strong></p>
<p><strong>It&#8217;s simple. Here&#8217;s the code:</strong></p>
<blockquote><p>&lt;input type=&#8221;image&#8221; name=&#8221;cmdSubmit&#8221; alt=&#8221;Submit Form&#8221; src=&#8221;/images/submit.png&#8221; value=&#8221;Submit&#8221;&gt;</p></blockquote>
<p>Simply put that in place of your standard form submit code and you&#8217;re ready to go!</p>
<div class="shr-publisher-340"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/make-your-submit-button-an-image-using-html/">Make your SUBMIT button an IMAGE using HTML</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cimmeronstudios.com/design-blog/2010/make-your-submit-button-an-image-using-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying Category POSTS on a WordPress Blog Page</title>
		<link>http://www.cimmeronstudios.com/design-blog/2010/displaying-category-posts-on-a-wordpress-blog-page/</link>
		<comments>http://www.cimmeronstudios.com/design-blog/2010/displaying-category-posts-on-a-wordpress-blog-page/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 03:55:17 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=308</guid>
		<description><![CDATA[<p>This week I wanted to create a page that would hold all of the blog posts that I made in the category &#8216;Portfolio&#8217;. I didn&#8217;t create a portfolio page because I wanted to be able to add a post each time I had a new item to add to my portfolio. &#60;authors note: I have [...]</p><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/displaying-category-posts-on-a-wordpress-blog-page/">Displaying Category POSTS on a WordPress Blog Page</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>This week I wanted to create a page that would hold all of the blog posts that I made in the category &#8216;Portfolio&#8217;. I didn&#8217;t create a portfolio page because I wanted to be able to add a post each time I had a new item to add to my portfolio.</p>
<p>&lt;authors note: I have about 100 things to add to this portfolio. If you would like to see my complete portfolio, please visit my website, <a href="http://cimmeronstudios.com/portfolio.php" target="_blank">CimmeronStudios.com</a>&gt;</p>
<p>So, I hit the WordPress CODEX to dig into the best way to create a page that would display posts based on whatever variable I wanted to add, in this case, the category ID.</p>
<p>To begin, be sure to create a new TEMPLATE for your page. To achieve what we want here, we want to MODIFY the existing LOOP. Now, the LOOP is basically what powers your WordPress site. Here&#8217;s the very basics (taken from WordPress.org)</p>
<blockquote><p><strong>The Loop</strong> is used by WordPress to display each of your posts. Using The Loop, WordPress processes each of the posts to be displayed on the current page and formats them according to how they match specified criteria within The Loop tags.</p></blockquote>
<p>For a very detailed explanation of the LOOP, check out the <a href="http://codex.wordpress.org/The_Loop" target="_blank">WordPress Codex</a>.</p>
<p>So, back to our page. I&#8217;m going to run through this in a step by step fashion.</p>
<p>1. Create a new page template. You can do this by taking the existing page.php and saving it as a template, such as template-portfolio.php.  To do that, you will need to remember to place a bit of code at the top of the page so that WP recognizes that it is a template:</p>
<p><img title="Add template code" src="http://wickedrelevant.com/design/wp-content/uploads/2010/03/SnapShot_032215.png" alt="Add template code" width="194" height="101" /></p>
<p>2. Locate the following line of code on this new template page:</p>
<blockquote><p>&lt;? php query_posts(&#8216;posts_per_page=1&amp;cat=7&#8242;);<br />
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;</p></blockquote>
<p>3. Next, we will alter this part of the code to display only what we WANT to have displayed. We will do that by using a query:</p>
<blockquote>
<pre><code>
query_posts
</code></pre>
</blockquote>
<p>There are a TON of variables that we can use at this point, however, I&#8217;m going to use just 2 for this example. Category ID and Number of Posts to display.</p>
<p>The Query has to be added before the loop to make this work, so you will insert your Query like so:</p>
<p><img class="alignnone size-full wp-image-319" title="query" src="http://wickedrelevant.com/design/wp-content/uploads/2010/03/snappy.png" alt="query" width="432" height="40" /></p>
<p>The highlighted area (above) shows you where you&#8217;ll be adding your information. Basically, the area between the ( and the &#8216; &#8230;.</p>
<blockquote><p><code><br />
('YourInformation=5&amp;YourInformation=1')</code></p></blockquote>
<p>That is where you tell the page WHAT to display. In my example, we have:</p>
<blockquote><p>posts_per_page=5</p>
<p>5 posts will be displayed on this page</p></blockquote>
<p>Next we have the important one:</p>
<blockquote><p>cat=19</p>
<p>This means that ALL POSTS from Category ID number 19 will be displayed.</p></blockquote>
<p>You can change this by using the Category name, as well: <code>category_name</code></p>
<p>After you change out your Query values, you can upload the template to your server, go to the PAGE and assign it to that TEMPLATE &#8211; That&#8217;s all there is to it!</p>
<p>Here are a few other items that you may want to use when customizing. REMEMBER: You can string multiple variables together by using the &amp; as long as you keep everything within the (&#8216; &#8216;):</p>
<blockquote><p>tag=</p>
<p>tag_id=</p>
<p>author=</p>
<p>author_name=</p></blockquote>
<p>That should be enough to get you what you&#8217;re after. Any questions? Feel free to send me an <a href="mailto:mail@wickedrelevant.com">email</a> or comment below!</p>
<div class="shr-publisher-308"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><p>The post <a href="http://www.cimmeronstudios.com/design-blog/2010/displaying-category-posts-on-a-wordpress-blog-page/">Displaying Category POSTS on a WordPress Blog Page</a> appeared first on <a href="http://www.cimmeronstudios.com">Custom Wordpress Theme Design</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cimmeronstudios.com/design-blog/2010/displaying-category-posts-on-a-wordpress-blog-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
