<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>WordPress.com Forums &#187; Tag: archive - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/archive</link>
		<description>WordPress.com Forums &#187; Tag: archive - Recent Posts</description>
		<language>en</language>
		<pubDate>Fri, 24 May 2013 02:33:21 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/archive" rel="self" type="application/rss+xml" />

		<item>
			<title>karobrand on "Custom categories and custom tags in custom post type"</title>
			<link>http://en.forums.wordpress.com/topic/custom-categories-and-custom-tags-in-custom-post-type#post-1266152</link>
			<pubDate>Wed, 15 May 2013 12:44:33 +0000</pubDate>
			<dc:creator>karobrand</dc:creator>
			<guid isPermaLink="false">1266152@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks</p>
<p>sorry for wrong section
</p>
]]></description>
					</item>
		<item>
			<title>1tess on "Custom categories and custom tags in custom post type"</title>
			<link>http://en.forums.wordpress.com/topic/custom-categories-and-custom-tags-in-custom-post-type#post-1266139</link>
			<pubDate>Wed, 15 May 2013 12:13:53 +0000</pubDate>
			<dc:creator>1tess</dc:creator>
			<guid isPermaLink="false">1266139@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are in the wrong forum. These forums are for wordpress.com and we cannot help you here: you need to head over to wordpress.org.<br />
<a href="http://wordpress.org/support/" rel="nofollow">http://wordpress.org/support/</a>
</p>
]]></description>
					</item>
		<item>
			<title>karobrand on "Custom categories and custom tags in custom post type"</title>
			<link>http://en.forums.wordpress.com/topic/custom-categories-and-custom-tags-in-custom-post-type#post-1266132</link>
			<pubDate>Wed, 15 May 2013 12:01:07 +0000</pubDate>
			<dc:creator>karobrand</dc:creator>
			<guid isPermaLink="false">1266132@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Seeking help from all WordPress gurus.<br />
'm stuck on following error.</p>
<p>How to display and filter custom categories and custom tags in custom post type?<br />
I have registered custom post type: <code>register_post_type(&#039;portfolio&#039;, array(&lt;br /&gt;
					&#039;label&#039; =&gt; &#039;Projects&#039;,&lt;br /&gt;
					&#039;description&#039; =&gt; &#039;&#039;,&lt;br /&gt;
					&#039;public&#039; =&gt; true,&lt;br /&gt;
					&#039;show_ui&#039; =&gt; true,&lt;br /&gt;
					&#039;show_in_menu&#039; =&gt; true,&lt;br /&gt;
					&#039;capability_type&#039; =&gt; &#039;post&#039;,&lt;br /&gt;
					&#039;hierarchical&#039; =&gt; false,&lt;br /&gt;
					&#039;rewrite&#039; =&gt; array(&#039;slug&#039; =&gt; &#039;portfolio&#039;),&lt;br /&gt;
					&#039;query_var&#039; =&gt; true,&lt;br /&gt;
					&#039;has_archive&#039; =&gt; true,&lt;br /&gt;
					&#039;exclude_from_search&#039; =&gt; false,&lt;br /&gt;
					&#039;supports&#039; =&gt; array(&#039;title&#039;,&#039;editor&#039;,&#039;excerpt&#039;,&#039;custom-fields&#039;,&#039;comments&#039;,&#039;revisions&#039;,&#039;thumbnail&#039;,&#039;author&#039;,&#039;page-attributes&#039;,),&lt;br /&gt;
					&#039;labels&#039; =&gt; array (&lt;br /&gt;
							  &#039;name&#039; =&gt; &#039;Projects&#039;,&lt;br /&gt;
							  &#039;singular_name&#039; =&gt; &#039;Project&#039;,&lt;br /&gt;
							  &#039;menu_name&#039; =&gt; &#039;Projects&#039;,&lt;br /&gt;
							  &#039;add_new&#039; =&gt; &#039;Add Project&#039;,&lt;br /&gt;
							  &#039;add_new_item&#039; =&gt; &#039;Add New Project&#039;,&lt;br /&gt;
							  &#039;edit&#039; =&gt; &#039;Edit&#039;,&lt;br /&gt;
							  &#039;edit_item&#039; =&gt; &#039;Edit Project&#039;,&lt;br /&gt;
							  &#039;new_item&#039; =&gt; &#039;New Project&#039;,&lt;br /&gt;
							  &#039;view&#039; =&gt; &#039;View Project&#039;,&lt;br /&gt;
							  &#039;view_item&#039; =&gt; &#039;View Project&#039;,&lt;br /&gt;
							  &#039;search_items&#039; =&gt; &#039;Search Projects&#039;,&lt;br /&gt;
							  &#039;not_found&#039; =&gt; &#039;No Projects Found&#039;,&lt;br /&gt;
							  &#039;not_found_in_trash&#039; =&gt; &#039;No Projects Found in Trash&#039;,&lt;br /&gt;
							  &#039;parent&#039; =&gt; &#039;Parent Project&#039;,&lt;br /&gt;
							),&lt;br /&gt;
					)&lt;br /&gt;
		);</code><br />
I have registered custom taxonomies 'cat' and 'tags' (different from blog taxonomies):<br />
<code>register_taxonomy(&lt;br /&gt;
			&#039;cat&#039;,&lt;br /&gt;
			array (0 =&gt; &#039;portfolio&#039;,),&lt;br /&gt;
			array(&lt;br /&gt;
				&#039;hierarchical&#039; =&gt; true,&lt;br /&gt;
				&#039;label&#039; =&gt; &#039;Categories&#039;,&lt;br /&gt;
				&#039;show_ui&#039; =&gt; true,&lt;br /&gt;
				&#039;query_var&#039; =&gt; true,&lt;br /&gt;
				&#039;rewrite&#039; =&gt; array(&#039;slug&#039; =&gt; &#039;cat&#039;),&lt;br /&gt;
				&#039;singular_label&#039; =&gt; &#039;Category&#039;&lt;br /&gt;
				)&lt;br /&gt;
		);&lt;br /&gt;
register_taxonomy(&lt;br /&gt;
			&#039;tags&#039;,&lt;br /&gt;
			array (0 =&gt; &#039;portfolio&#039;,),&lt;br /&gt;
			array(&lt;br /&gt;
				&#039;hierarchical&#039; =&gt; false,&lt;br /&gt;
				&#039;label&#039; =&gt; &#039;Tags&#039;,&lt;br /&gt;
				&#039;show_ui&#039; =&gt; true,&lt;br /&gt;
				&#039;query_var&#039; =&gt; true,&lt;br /&gt;
				&#039;rewrite&#039; =&gt; array(&#039;slug&#039; =&gt; &#039;tags&#039;),&lt;br /&gt;
				&#039;singular_label&#039; =&gt; &#039;Tag&#039;&lt;br /&gt;
				)&lt;br /&gt;
		);</code><br />
I have page with template file portfolio.php in theme`s page-templates folder.<br />
I tryed to make custom template pages like: cat.php, portfolio-cat.php, archive-cat.php, archive-portfolio.php, but newer wordpress founds this template, just shows 404 page.<br />
If i display the_terms( $post-&#62;ID, 'cat' , ' ' );, it shows right categories, but linking to blog (domain.com/blog/cat/residental [residental = category]).<br />
My site uses Multilingual Press Plugin with Network Sites for it.</p>
<p>I'll appreciate any help<br />
Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1249658</link>
			<pubDate>Tue, 30 Apr 2013 22:12:15 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1249658@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>:)</p>
<blockquote><p>I previously posted it in a separate help request but as nobody was answering</p></blockquote>
<p>Give it time, sometimes questions take a little time to get answered.
</p>
]]></description>
					</item>
		<item>
			<title>ottaviagambardella on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1249599</link>
			<pubDate>Tue, 30 Apr 2013 21:50:30 +0000</pubDate>
			<dc:creator>ottaviagambardella</dc:creator>
			<guid isPermaLink="false">1249599@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I did it!!! Thank you very much!
</p>
]]></description>
					</item>
		<item>
			<title>ottaviagambardella on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1249594</link>
			<pubDate>Tue, 30 Apr 2013 21:49:57 +0000</pubDate>
			<dc:creator>ottaviagambardella</dc:creator>
			<guid isPermaLink="false">1249594@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you all very much. I previously posted it in a separate help request but as nobody was answering I posted it here and in the other question too. Sorry =)</p>
<p>Thank you!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1249512</link>
			<pubDate>Tue, 30 Apr 2013 21:16:41 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1249512@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Sometimes it's best to post new questions in <a href="http://en.forums.wordpress.com/forum/css-customization/#postform">separate help requests</a> instead of adding them on to older or long threads. It helps to keep things from getting missed and keeps everything better organized. :)</p>
<p>I replied to the other question you posted at <a href="http://en.forums.wordpress.com/topic/increase-the-width-of-the-layout?replies=4#post-1249508" rel="nofollow">http://en.forums.wordpress.com/topic/increase-the-width-of-the-layout?replies=4#post-1249508</a>
</p>
]]></description>
					</item>
		<item>
			<title>ottaviagambardella on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1248798</link>
			<pubDate>Tue, 30 Apr 2013 15:22:35 +0000</pubDate>
			<dc:creator>ottaviagambardella</dc:creator>
			<guid isPermaLink="false">1248798@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Could you please answer the last question? I posted it also onother time in the support page and in the CSS forum but nobody is answering me about it! =)<br />
Thank you!
</p>
]]></description>
					</item>
		<item>
			<title>ottaviagambardella on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1246729</link>
			<pubDate>Mon, 29 Apr 2013 08:56:38 +0000</pubDate>
			<dc:creator>ottaviagambardella</dc:creator>
			<guid isPermaLink="false">1246729@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you very much! I just started to configure the blog and I'm trying to learn to do CSS etc.<br />
I still have one problem if you can help me about that:<br />
the width of the post area on the single post page is smaller than the width of the post area in the main blog page (I previously modified the width of the entire homepage and of the two parts (left sidebar and post area) with CSS).<br />
I would like to increase the width of the post area on the single post page an make it centered in the page (the page that opens up when you click on the post title in the home page). How can I do it? Do you know which CSS code I should use?</p>
<p>Thank you for any help
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1245244</link>
			<pubDate>Sat, 27 Apr 2013 20:48:31 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1245244@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome. You may want to read that whole Custom Design FAQs sections. While you wait this may also be helpful &#62;   <a href="http://wpbtips.wordpress.com/2013/02/21/where-is-the-theme-css-and-how-do-i-edit-it/" rel="nofollow">http://wpbtips.wordpress.com/2013/02/21/where-is-the-theme-css-and-how-do-i-edit-it/</a> And see here for the browser’s developer tools. Under Firefox, install Firebug. <a href="http://getfirebug.com/" rel="nofollow">http://getfirebug.com/</a> For Internet Explorer, install the Developer Toolbar.  <a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=95E06CBE-4940-4218-B75D-B8856FCED535&#038;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/en/details.aspx?familyid=95E06CBE-4940-4218-B75D-B8856FCED535&#038;displaylang=en</a>
</p>
]]></description>
					</item>
		<item>
			<title>ottaviagambardella on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1245236</link>
			<pubDate>Sat, 27 Apr 2013 20:43:12 +0000</pubDate>
			<dc:creator>ottaviagambardella</dc:creator>
			<guid isPermaLink="false">1245236@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Ok, thank you for your answer!
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1245224</link>
			<pubDate>Sat, 27 Apr 2013 20:32:57 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1245224@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>CSS editing cannot be used to chnage the way any theme is designed to function. It can only be used to change appearance. Please read:</p>
<blockquote><p>Does the Custom Design upgrade let me edit HTML?<br />
No. The Custom Design upgrade allows you to edit fonts and CSS only. You can change the appearance of a theme, but not its HTML markup, PHP code, or content.  ... <a href="http://en.support.wordpress.com/custom-design/#frequently-asked-questions" rel="nofollow">http://en.support.wordpress.com/custom-design/#frequently-asked-questions</a></p></blockquote>
]]></description>
					</item>
		<item>
			<title>ottaviagambardella on "customize blog archive"</title>
			<link>http://en.forums.wordpress.com/topic/customize-blog-archive#post-1245006</link>
			<pubDate>Sat, 27 Apr 2013 16:28:10 +0000</pubDate>
			<dc:creator>ottaviagambardella</dc:creator>
			<guid isPermaLink="false">1245006@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>In the Blog Archive down on the left sidebar I can only see the name of the month (April 2013), but down that clicking on "April 2013" I would like to see the titles of the posts of that month (for each month). How can I do it?<br />
thank you for your help
</p>
]]></description>
					</item>
		<item>
			<title>nicepaul on "How do I get an archive page, similar to my 404 page"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-get-an-archive-page-similar-to-my-404-page#post-1240189</link>
			<pubDate>Wed, 24 Apr 2013 10:43:02 +0000</pubDate>
			<dc:creator>nicepaul</dc:creator>
			<guid isPermaLink="false">1240189@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you.</p>
<p>I had an archive page before switching themes but it was empty in my new theme, so I didn't think it would be as simple as this. (and didn't think to look for a shortcode myself because I must have done it a different way before).
</p>
]]></description>
					</item>
		<item>
			<title>1tess on "How do I get an archive page, similar to my 404 page"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-get-an-archive-page-similar-to-my-404-page#post-1238418</link>
			<pubDate>Tue, 23 Apr 2013 16:47:40 +0000</pubDate>
			<dc:creator>1tess</dc:creator>
			<guid isPermaLink="false">1238418@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can use the archives shortcode on a page for an index of your posts:<br />
<a href="http://en.support.wordpress.com/archives-shortcode/" rel="nofollow">http://en.support.wordpress.com/archives-shortcode/</a>
</p>
]]></description>
					</item>
		<item>
			<title>nicepaul on "How do I get an archive page, similar to my 404 page"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-get-an-archive-page-similar-to-my-404-page#post-1238396</link>
			<pubDate>Tue, 23 Apr 2013 16:40:52 +0000</pubDate>
			<dc:creator>nicepaul</dc:creator>
			<guid isPermaLink="false">1238396@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Nobody?</p>
<p>Is it not possible?
</p>
]]></description>
					</item>
		<item>
			<title>nicepaul on "How do I get an archive page, similar to my 404 page"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-get-an-archive-page-similar-to-my-404-page#post-1236193</link>
			<pubDate>Mon, 22 Apr 2013 13:05:37 +0000</pubDate>
			<dc:creator>nicepaul</dc:creator>
			<guid isPermaLink="false">1236193@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've just switched to the "Publish" WP.com theme, and I can't find where to switch on an archive page listing the titles of all posts.</p>
<p>When I went looking for it at /archive, or /blog etc, I find that the 404 page has almost exactly what I'm looking for on it! (although it only shows the most recent posts)</p>
<p>How can I create an archive page? I'm sure the previous theme I used ("Crisp") had a page template type called archive. "Publish" doesn't have this as far as I can see, but it would be incredibly frustrating if what I need is only available on the 404 error page!</p>
<p>Any ideas?</p>
<p>thanks,<br />
Paul</p>
<p><a href="http://nicepaul.com/" rel="nofollow">http://nicepaul.com/</a>
</p>
]]></description>
					</item>
		<item>
			<title>porquefestival on "how to create an archive of post"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-create-an-archive-of-post#post-1227898</link>
			<pubDate>Wed, 17 Apr 2013 00:26:55 +0000</pubDate>
			<dc:creator>porquefestival</dc:creator>
			<guid isPermaLink="false">1227898@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>hi, i want to publish the second edition of the PQ festival, so i need to put the older post in an archive., because i dont want to be shown in the begining the post of 2012 edition. I create a widget, but i dont know how to appear in the main page, and also how to put the posts in.<br />
thanks!!
</p>
]]></description>
					</item>
		<item>
			<title>auxclass on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197502</link>
			<pubDate>Wed, 27 Mar 2013 17:17:45 +0000</pubDate>
			<dc:creator>auxclass</dc:creator>
			<guid isPermaLink="false">1197502@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You be welcome - blogs do come back - I am not privy to why a blog went away nor why one comes back and what if any mistake was made - glad it had a happy ending for you </p>
<p>You might read the links @TT gave above - most people don't but those are the terms you agreed to - </p>
<p>Good luck with your blog
</p>
]]></description>
					</item>
		<item>
			<title>kjinya on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197492</link>
			<pubDate>Wed, 27 Mar 2013 17:11:51 +0000</pubDate>
			<dc:creator>kjinya</dc:creator>
			<guid isPermaLink="false">1197492@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>thanks auxclass, it does look live but I might need to communicate with staff elsewhere as i seem to be receiving 'certain messages' when i try to access my dashboard for statistics (being a novice is a painful experience). </p>
<p>Appreciate it you taking time to check it out for me though.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197471</link>
			<pubDate>Wed, 27 Mar 2013 17:03:07 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1197471@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Oh, looky look at that!
</p>
]]></description>
					</item>
		<item>
			<title>auxclass on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197464</link>
			<pubDate>Wed, 27 Mar 2013 17:00:03 +0000</pubDate>
			<dc:creator>auxclass</dc:creator>
			<guid isPermaLink="false">1197464@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p><a href="http://persuasionandprose.wordpress.com/" rel="nofollow">http://persuasionandprose.wordpress.com/</a></p>
<p>Is  live for me now - (did not look earlier)
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197461</link>
			<pubDate>Wed, 27 Mar 2013 16:57:56 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1197461@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>We Volunteers have no idea what the ToS Staff workload is and when they will answer you. Unfortunately choosing to post here has made your private business public and available to anyone on the internet.
</p>
]]></description>
					</item>
		<item>
			<title>kjinya on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197456</link>
			<pubDate>Wed, 27 Mar 2013 16:56:13 +0000</pubDate>
			<dc:creator>kjinya</dc:creator>
			<guid isPermaLink="false">1197456@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you timethief for the quick response. I apologize for raising this issue in a public forum. I have not received my answer as of yet but will wait accordingly. </p>
<p>Thanks again
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197431</link>
			<pubDate>Wed, 27 Mar 2013 16:45:50 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1197431@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I’m sorry but this is not a matter for posting to a public forum. We Volunteers answering support questions have no role to play in this process. This is between you and Staff. You have already contacted Staff by using the “click here to contact us” link in the notice, the ToS department definitely received your request and answered you. Sometimes mistakes may be made but once again we Volunteers cannot determine that and have no role to play in the process. Please continue to communicate with Staff knowing that the policy is to refrain from discussing such ToS issue on the forums.</p>
<p>Reference links:<br />
<a href="http://en.support.wordpress.com/suspended-blogs/" rel="nofollow">http://en.support.wordpress.com/suspended-blogs/</a><br />
<a href="http://wordpress.com/types-of-blogs/" rel="nofollow">http://wordpress.com/types-of-blogs/</a><br />
<a href="http://en.support.wordpress.com/advertising/" rel="nofollow">http://en.support.wordpress.com/advertising/</a><br />
<a href="http://en.wordpress.com/tos/" rel="nofollow">http://en.wordpress.com/tos/</a>
</p>
]]></description>
					</item>
		<item>
			<title>kjinya on "Blog suspension and/or placed in archives"</title>
			<link>http://en.forums.wordpress.com/topic/blog-suspension-andor-placed-in-archives#post-1197420</link>
			<pubDate>Wed, 27 Mar 2013 16:36:31 +0000</pubDate>
			<dc:creator>kjinya</dc:creator>
			<guid isPermaLink="false">1197420@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>At the risk of sounding like a broken record (probably a bit late for that), does anybody know how i can get some information on how to restore my blog if there has been a mistake or get assistance on what needs to be done to get it up and running again?</p>
<p>I have already made use of the contact form as well raising the issue by email but come up empty handed. I'm hoping the only response to this isn't going to be 'wait'.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Category archive pages with photos?"</title>
			<link>http://en.forums.wordpress.com/topic/category-archive-pages-with-photos#post-1191822</link>
			<pubDate>Sat, 23 Mar 2013 04:37:37 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1191822@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Twenty Ten shows only excerpts on the categories, tags and archives pages. See this post by Panos for more on this: <a href="http://wpbtips.wordpress.com/2009/03/25/full-posts-in-archive-pages/" rel="nofollow">http://wpbtips.wordpress.com/2009/03/25/full-posts-in-archive-pages/</a> .</p>
<p>See also this post by Panos on how to use the post "excerpt" function to get more content, and show images on the categories and archives pages: <a href="http://wpbtips.wordpress.com/2009/03/25/the-excerpt-function/" rel="nofollow">http://wpbtips.wordpress.com/2009/03/25/the-excerpt-function/</a> .
</p>
]]></description>
					</item>
		<item>
			<title>rpwenzel on "Category archive pages with photos?"</title>
			<link>http://en.forums.wordpress.com/topic/category-archive-pages-with-photos#post-1191815</link>
			<pubDate>Sat, 23 Mar 2013 04:15:03 +0000</pubDate>
			<dc:creator>rpwenzel</dc:creator>
			<guid isPermaLink="false">1191815@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have a dance blog, and most of my posts fall into a few broad categories: reviews, interviews, guides, etc.</p>
<p>I was hoping to set up links on my top menu (current pretty empty) to these categories, bringing visitors to an index page like this, listing everything in that category:</p>
<p><a href="http://rpwenzel.com/category/interviews/" rel="nofollow">http://rpwenzel.com/category/interviews/</a></p>
<p>Is there a way to do this? And is there a way I can get these posts to look like they do on the homepage, with more text and photos included, in the Twenty Ten theme?</p>
<p>Thanks for your help!
</p>
]]></description>
					</item>
		<item>
			<title>absurdoldbird on "Post widths change on older posts as you scroll down"</title>
			<link>http://en.forums.wordpress.com/topic/post-widths-change-on-older-posts-as-you-scroll-down#post-1148874</link>
			<pubDate>Sun, 10 Feb 2013 20:39:30 +0000</pubDate>
			<dc:creator>absurdoldbird</dc:creator>
			<guid isPermaLink="false">1148874@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The first problem: I've scrolled through your blogs and can't see them narrowing at all, so this is most likely to be a problem with your browser or possibly some add ons you have in it. Please try clearing your cache and then log back in to your account and see if that makes a difference. if that doesn't work, then update your browser or try using a different one. </p>
<p>The 'show older posts' button is missing from your blog, instead you have 'load more posts' and is part of the infinite scroll feature. Please read this to understand more about it and how to disable it: </p>
<p><a href="http://en.support.wordpress.com/infinite-scroll/" rel="nofollow">http://en.support.wordpress.com/infinite-scroll/</a>
</p>
]]></description>
					</item>
		<item>
			<title>seattlecafegirl on "Post widths change on older posts as you scroll down"</title>
			<link>http://en.forums.wordpress.com/topic/post-widths-change-on-older-posts-as-you-scroll-down#post-1148394</link>
			<pubDate>Sun, 10 Feb 2013 04:56:35 +0000</pubDate>
			<dc:creator>seattlecafegirl</dc:creator>
			<guid isPermaLink="false">1148394@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'm trying to fix a problem I'm having with my oldest posts getting smaller and smaller widths as you scroll down to the bottom of my blog.  They get to the point where they are unreadable.  I've looked at my newer posts compared to the older ones and there doesn't seem to be a difference in the way I wrote the posts.</p>
<p>Additionally, I've posted 39 times total and all my posts, even old ones, are showing on the blog page.  I've reduced my number of posts to 10 to display, but when you get to the bottom and click "show older posts" it automatically loads all the older ones at once.  Not sure if there a way to fix this.</p>
<p>I'm using the Bueno theme.  Any help is much appreciated.
</p>
]]></description>
					</item>

	</channel>
</rss>
