<?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: function - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/function</link>
		<description>WordPress.com Forums &#187; Tag: function - Recent Posts</description>
		<language>en</language>
		<pubDate>Tue, 21 May 2013 17:38:59 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/function" rel="self" type="application/rss+xml" />

		<item>
			<title>interclublondon on "Why is this logic not displaying properly?"</title>
			<link>http://en.forums.wordpress.com/topic/why-is-this-logic-not-displaying-properly#post-1009293</link>
			<pubDate>Thu, 13 Sep 2012 20:04:27 +0000</pubDate>
			<dc:creator>interclublondon</dc:creator>
			<guid isPermaLink="false">1009293@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>ok - still, if anyone knows...! please let me know!
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "Why is this logic not displaying properly?"</title>
			<link>http://en.forums.wordpress.com/topic/why-is-this-logic-not-displaying-properly#post-1009283</link>
			<pubDate>Thu, 13 Sep 2012 19:54:16 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">1009283@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The blog you specified at beta.inter-club.co.uk does not appear to be hosted at WordPress.com.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>interclublondon on "Why is this logic not displaying properly?"</title>
			<link>http://en.forums.wordpress.com/topic/why-is-this-logic-not-displaying-properly#post-1009282</link>
			<pubDate>Thu, 13 Sep 2012 19:54:15 +0000</pubDate>
			<dc:creator>interclublondon</dc:creator>
			<guid isPermaLink="false">1009282@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>beta.inter-club.co.uk</p>
<p>the homepage is meant to display the latest posts - 3 rows each of 3 posts, in chronological order.</p>
<p>it works fine if I display up to 6 posts. But after that it starts putting the next post in random positions... why is this?</p>
<p>here is the code in question:</p>
<p>&#60;?php<br />
    $args = array(<br />
                 'category_name' =&#62; 'blog',<br />
                 'post_type' =&#62; 'post',<br />
                 'posts_per_page' =&#62; 9<br />
                 //'paged' =&#62; ( get_query_var('paged') ? get_query_var('paged') : 1),<br />
                 );<br />
    query_posts($args);<br />
    $x = 0;<br />
    while (have_posts()) : the_post(); ?&#62;</p>
<p>    &#60;?php if(($x == 2) &#124;&#124; ($x=="5") &#124;&#124; ($x=="8") &#124;&#124; ($x=="11")) { ?&#62;<br />
    &#60;div class="home_blog_box home_blog_box_last"&#62;<br />
    &#60;?php } else { ?&#62;<br />
    &#60;div class="home_blog_box"&#62;<br />
    &#60;?php } ?&#62;<br />
      <a>"&#62;&#60;?php the_post_thumbnail('featured-blog'); ?&#62;</a><br />
      &#60;h3&#62;<a>"&#62;&#60;?php the_title(); ?&#62;</a>&#60;/h3&#62;<br />
    &#60;/div&#62;&#60;!--//home_blog_box--&#62;    </p>
<p>    &#60;?php $x++; ?&#62;<br />
    &#60;?php endwhile; ?&#62;<br />
    &#60;?php wp_reset_query(); ?&#62;</p>
<p>    &#60;div class="clear"&#62;&#60;p align="right"&#62;<a href="/?page_id=17">&#60;font color="black"&#62;Click here for more Past Event Reviews&#60;/font&#62;</a>&#60;/p&#62;&#60;/div&#62;
</p>
]]></description>
					</item>
		<item>
			<title>dahlymcc on "Removing ... from excerpts - custom"</title>
			<link>http://en.forums.wordpress.com/topic/removing-from-excerpts-custom#post-939977</link>
			<pubDate>Wed, 11 Jul 2012 16:49:02 +0000</pubDate>
			<dc:creator>dahlymcc</dc:creator>
			<guid isPermaLink="false">939977@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I want to completely remove the ellipses from my excerpts. They show up on my page as ... rather than the bracketed [...]. How do I get rid of this? How can I add a "Continue Reading" instead?</p>
<p>Here is my functions.php code:</p>
<p>&#60;?php</p>
<p>	$functions_path = TEMPLATEPATH . '/functions/';<br />
	$includes_path = TEMPLATEPATH . '/includes/';</p>
<p>	//Theme Options<br />
	require_once $functions_path . 'admin-options.php';</p>
<p>	//Loading jQuery and Scripts<br />
	require_once $includes_path . 'theme-scripts.php';</p>
<p>	//Widget and Sidebar<br />
	require_once $includes_path . 'sidebar-init.php';</p>
<p>	require_once $includes_path . 'register-widgets.php';</p>
<p>	//Additional function<br />
	require_once $includes_path . 'theme-function.php';</p>
<p>	//Theme init<br />
	require_once $includes_path . 'theme-init.php';</p>
<p>	// removes detailed login error information for security<br />
	add_filter('login_errors',create_function('$a', "return null;"));</p>
<p>	// Removes Trackbacks from the comment cout<br />
	add_filter('get_comments_number', 'comment_count', 0);<br />
	function comment_count( $count ) {<br />
		if ( ! is_admin() ) {<br />
			global $id;<br />
			$comments_by_type = &#38;separate_comments(get_comments('status=approve&#38;post_id=' . $id));<br />
			return count($comments_by_type['comment']);<br />
		} else {<br />
			return $count;<br />
		}<br />
	}</p>
<p>	// custom excerpt ellipses for 2.9+<br />
	function custom_excerpt_more($more) {<br />
		return 'Read More &#187;';<br />
	}<br />
	add_filter('excerpt_more', 'custom_excerpt_more');<br />
	// no more jumping for read more link<br />
	function no_more_jumping($post) {<br />
		return '<a>ID).'" class="read-more"&#62;'.'Continue Reading'.'</a>';<br />
	}<br />
	add_filter('excerpt_more', 'no_more_jumping');</p>
<p>	// category id in body and post class<br />
	function category_id_class($classes) {<br />
		global $post;<br />
		foreach((get_the_category($post-&#62;ID)) as $category)<br />
			$classes [] = 'cat-' . $category-&#62;cat_ID . '-id';<br />
			return $classes;<br />
	}<br />
	add_filter('post_class', 'category_id_class');<br />
	add_filter('body_class', 'category_id_class');</p>
<p>?&#62;
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "Removing ... from excerpts - custom"</title>
			<link>http://en.forums.wordpress.com/topic/removing-from-excerpts-custom#post-939978</link>
			<pubDate>Wed, 11 Jul 2012 16:49:02 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">939978@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You did not specify a blog address or reason for posting when you created this topic.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Can we see the preview of the theme with the site content?"</title>
			<link>http://en.forums.wordpress.com/topic/can-we-see-the-preview-of-the-theme-with-the-site-content#post-742351</link>
			<pubDate>Fri, 11 Nov 2011 19:37:10 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">742351@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome. :)
</p>
]]></description>
					</item>
		<item>
			<title>luisvilchisn on "Can we see the preview of the theme with the site content?"</title>
			<link>http://en.forums.wordpress.com/topic/can-we-see-the-preview-of-the-theme-with-the-site-content#post-742350</link>
			<pubDate>Fri, 11 Nov 2011 19:35:41 +0000</pubDate>
			<dc:creator>luisvilchisn</dc:creator>
			<guid isPermaLink="false">742350@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks, I found it thanks to you. :D
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Can we see the preview of the theme with the site content?"</title>
			<link>http://en.forums.wordpress.com/topic/can-we-see-the-preview-of-the-theme-with-the-site-content#post-742329</link>
			<pubDate>Fri, 11 Nov 2011 19:14:14 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">742329@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That function is here &#62; Appearance &#62; Themes<br />
a thumbnail image appears and we click "preview" to see how it looks on our blog. If we like it we click "activate". However, for premium themes note the support documentation here. <a href="http://en.support.wordpress.com/themes/premium-themes/" rel="nofollow">http://en.support.wordpress.com/themes/premium-themes/</a>
</p>
]]></description>
					</item>
		<item>
			<title>luisvilchisn on "Can we see the preview of the theme with the site content?"</title>
			<link>http://en.forums.wordpress.com/topic/can-we-see-the-preview-of-the-theme-with-the-site-content#post-742327</link>
			<pubDate>Fri, 11 Nov 2011 19:10:41 +0000</pubDate>
			<dc:creator>luisvilchisn</dc:creator>
			<guid isPermaLink="false">742327@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi, I want to see how my blog looks before change or buy a new theme? I remember that WordPress had that function, but now I can't find it.</p>
<p>Can somebody help me?</p>
<p>Thanks!
</p>
]]></description>
					</item>
		<item>
			<title>mziff on "Fatal error: Call to undefined function: array_diff_key() -- HELP!"</title>
			<link>http://en.forums.wordpress.com/topic/fatal-error-call-to-undefined-function-array_diff_key-help#post-662447</link>
			<pubDate>Thu, 04 Aug 2011 07:04:44 +0000</pubDate>
			<dc:creator>mziff</dc:creator>
			<guid isPermaLink="false">662447@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I apologize! i will take it over there =)
</p>
]]></description>
					</item>
		<item>
			<title>auxclass on "Fatal error: Call to undefined function: array_diff_key() -- HELP!"</title>
			<link>http://en.forums.wordpress.com/topic/fatal-error-call-to-undefined-function-array_diff_key-help#post-662446</link>
			<pubDate>Thu, 04 Aug 2011 07:02:41 +0000</pubDate>
			<dc:creator>auxclass</dc:creator>
			<guid isPermaLink="false">662446@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You said the magic words:<br />
<blockquote>its hosted on a friend's personal server </p></blockquote>
<p>Which means:</p>
<p>The site you are asking about does not seem to be hosted on WordPress.COM so you need to make friends over at WordPress.ORG the keepers of the software you are using.</p>
<p><a href="http://en.forums.wordpress.com/topic/7-things-to-know-before-posting-in-wordpresscom-forums?replies=1" rel="nofollow">http://en.forums.wordpress.com/topic/7-things-to-know-before-posting-in-wordpresscom-forums?replies=1</a></p>
<p>This site is for support of sites hosted on WordPress.COM. You should address your questions to WordPress.ORG the keepers of the software you are using: <a href="http://wordpress.org/support/" rel="nofollow">http://wordpress.org/support/</a></p>
<p>For more on the difference: <a href="http://support.wordpress.com/com-vs-org/" rel="nofollow">http://support.wordpress.com/com-vs-org/</a>
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "Fatal error: Call to undefined function: array_diff_key() -- HELP!"</title>
			<link>http://en.forums.wordpress.com/topic/fatal-error-call-to-undefined-function-array_diff_key-help#post-662445</link>
			<pubDate>Thu, 04 Aug 2011 07:00:20 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">662445@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You did not specify a blog address or reason for posting when you created this topic.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>mziff on "Fatal error: Call to undefined function: array_diff_key() -- HELP!"</title>
			<link>http://en.forums.wordpress.com/topic/fatal-error-call-to-undefined-function-array_diff_key-help#post-662444</link>
			<pubDate>Thu, 04 Aug 2011 07:00:18 +0000</pubDate>
			<dc:creator>mziff</dc:creator>
			<guid isPermaLink="false">662444@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello! Please help! I installed a new widget (a flash gallery, dont remember the exact name) and ever since I havent been able to log in to edit my website. the site is still up but it wont let me log in, i just keep getting this message:</p>
<p>Fatal error: Call to undefined function: array_diff_key() in /home/content/a/z/t/aztexpress/html/matthewziff/wp-content/plugins/flash-album-gallery/admin/admin.php on line 28</p>
<p>the site is my personal site: matthewziff.com</p>
<p>its hosted on a friend's personal server but he is away so i have to wait till he gets back... until then, can anyone help me? </p>
<p>kthx!
</p>
]]></description>
					</item>
		<item>
			<title>auxclass on "BBS functionality"</title>
			<link>http://en.forums.wordpress.com/topic/bbs-functionality#post-635207</link>
			<pubDate>Tue, 28 Jun 2011 13:25:22 +0000</pubDate>
			<dc:creator>auxclass</dc:creator>
			<guid isPermaLink="false">635207@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Self hosted means:</p>
<p>The site you are asking about does not seem to be hosted on WordPress.COM so you need to make friends over at WordPress.ORG the keepers of the software you are using.</p>
<p><a href="http://en.forums.wordpress.com/topic/7-things-to-know-before-posting-in-wordpresscom-forums?replies=1" rel="nofollow">http://en.forums.wordpress.com/topic/7-things-to-know-before-posting-in-wordpresscom-forums?replies=1</a></p>
<p>This site is for support of sites hosted on WordPress.COM. You should address your questions to WordPress.ORG the keepers of the software you are using: <a href="http://wordpress.org/support/" rel="nofollow">http://wordpress.org/support/</a></p>
<p>For more on the difference: <a href="http://support.wordpress.com/com-vs-org/" rel="nofollow">http://support.wordpress.com/com-vs-org/</a>
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "BBS functionality"</title>
			<link>http://en.forums.wordpress.com/topic/bbs-functionality#post-635141</link>
			<pubDate>Tue, 28 Jun 2011 11:40:27 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">635141@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You did not specify a blog address or reason for posting when you created this topic.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>romway on "BBS functionality"</title>
			<link>http://en.forums.wordpress.com/topic/bbs-functionality#post-635140</link>
			<pubDate>Tue, 28 Jun 2011 11:40:26 +0000</pubDate>
			<dc:creator>romway</dc:creator>
			<guid isPermaLink="false">635140@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello,</p>
<p>I have my WordPress blog self hosted.<br />
I would like to add a bit of BBS behavior to the blog so that:<br />
  - Anyone can post posts or comments freely, without the need to register.<br />
  - The posts publish immediately and automatically, without waiting for approval.</p>
<p>I know you may worry about spam, but don't worry about that.</p>
<p>So I would like to know how I can modify the code so that I get this functionality- basically to have the POST and COMMENT buttons on all front-end pages, not only after registration.<br />
The default role of any user should be "Author", and except administrator users should not be able to change that status.</p>
<p>Thanx.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Tags and Widgets will not function"</title>
			<link>http://en.forums.wordpress.com/topic/tags-and-widgets-will-not-function#post-541481</link>
			<pubDate>Sun, 02 Jan 2011 21:18:30 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">541481@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>First thing to always do when the dashboard goes flakey is to log out, clear your browser cache and cookies, restart your browser and then try again.</p>
<p>Also, what browser and browser version are you using?</p>
<p>Have you tried with a different browser?
</p>
]]></description>
					</item>
		<item>
			<title>aaronschafersw on "Tags and Widgets will not function"</title>
			<link>http://en.forums.wordpress.com/topic/tags-and-widgets-will-not-function#post-541462</link>
			<pubDate>Sun, 02 Jan 2011 20:45:15 +0000</pubDate>
			<dc:creator>aaronschafersw</dc:creator>
			<guid isPermaLink="false">541462@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Currently I am not able to use a lot of functions on wordpress.  Is wordpress having technical issues?  I am unable to add widgets.  They will not drag from their position.  When I type in a new tag it will never register.  There are several other buggy issues.  Stuff is not loading frequently, like site stats, incoming links, etc.
</p>
]]></description>
					</item>
		<item>
			<title>dirtybata on "How to create a books catalogue?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-create-a-books-catalogue#post-519756</link>
			<pubDate>Fri, 22 Oct 2010 12:00:47 +0000</pubDate>
			<dc:creator>dirtybata</dc:creator>
			<guid isPermaLink="false">519756@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I want this
</p>
]]></description>
					</item>
		<item>
			<title>airodyssey on "How to create a books catalogue?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-create-a-books-catalogue#post-519753</link>
			<pubDate>Fri, 22 Oct 2010 11:51:54 +0000</pubDate>
			<dc:creator>airodyssey</dc:creator>
			<guid isPermaLink="false">519753@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi. To be able to help you, we need the URL of your blog, starting with http://
</p>
]]></description>
					</item>
		<item>
			<title>loub31122 on "How to create a books catalogue?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-create-a-books-catalogue#post-519722</link>
			<pubDate>Fri, 22 Oct 2010 08:31:19 +0000</pubDate>
			<dc:creator>loub31122</dc:creator>
			<guid isPermaLink="false">519722@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I'd like to create a catalogue to display my favorite books as regard as current world publishing.</p>
<p>Like the one of publishing houses or bookshops, i'm looking for figuring front covers and synopsis and then, thanks to one click, enter for more details and comments.</p>
<p>Is there any function that enable this kind of thing?</p>
<p>Thanks
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "text to pictures using smileyfunction in fuctions.php?"</title>
			<link>http://en.forums.wordpress.com/topic/text-to-pictures-using-smileyfunction-in-fuctionsphp#post-519473</link>
			<pubDate>Thu, 21 Oct 2010 12:36:29 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">519473@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The blog you specified at <a href="http://www.pommes-schranke.com" rel="nofollow">http://www.pommes-schranke.com</a> does not appear to be hosted at WordPress.com.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>swiftyious on "text to pictures using smileyfunction in fuctions.php?"</title>
			<link>http://en.forums.wordpress.com/topic/text-to-pictures-using-smileyfunction-in-fuctionsphp#post-519472</link>
			<pubDate>Thu, 21 Oct 2010 12:36:28 +0000</pubDate>
			<dc:creator>swiftyious</dc:creator>
			<guid isPermaLink="false">519472@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi there,</p>
<p>I would like to have all the text in my posts replaced with pictures. Example: all "e"s in a text should be replaced with a link to e.gif. So i got the idea, that i could do that with the smiley-function in the functions.php. I added all the letters with the correct pictures, but now only the first letters of a word is a picture, the second chars are still text. I figured out, that the function is not able to do that, but maybe someone could help me edit it, because i am not so good at php-programming, or maybe with a nice add-on :)</p>
<p>Thanks.</p>
<p>Günther
</p>
]]></description>
					</item>
		<item>
			<title>toryc103 on "Custom Function"</title>
			<link>http://en.forums.wordpress.com/topic/custom-function#post-431165</link>
			<pubDate>Wed, 10 Feb 2010 00:40:41 +0000</pubDate>
			<dc:creator>toryc103</dc:creator>
			<guid isPermaLink="false">431165@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have a Fruit page with multiple fruit products listed. (ie Apples, Oranges, Pears, Peaches) Each individual fruit, let's say Apples, has its own page. The Apples page will display all posts from category Apples.</p>
<p>The Apple post on the Fruit page links directly to the post and not to the Apple page . I am thinking I need to edit my page template file with a php query that says something like:</p>
<p>&#60;Check post title, Look for page with same name, Show page name&#62; </p>
<p>I would place the assumed code above in a link in my page template </p>
<p>Ultimately something like this:<br />
<a href="check title,look for same page name,show page link">&#60;?php the_title(); ?&#62;</a></p>
<p>Can anybody help me out? Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "Custom Function"</title>
			<link>http://en.forums.wordpress.com/topic/custom-function#post-431166</link>
			<pubDate>Wed, 10 Feb 2010 00:40:41 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">431166@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You did not specify a blog address or reason for posting when you created this topic.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "My blog does not appear in WordPress search"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-does-not-appear-in-wordpress-search#post-418116</link>
			<pubDate>Tue, 05 Jan 2010 01:13:17 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">418116@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Cancel that the ones on your blog posts aren't working. :(
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "My blog does not appear in WordPress search"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-does-not-appear-in-wordpress-search#post-418115</link>
			<pubDate>Tue, 05 Jan 2010 01:11:54 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">418115@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Yay! </p>
<p>The link <a href="http://en.wordpress.com/tag/breastfeed/" rel="nofollow">http://en.wordpress.com/tag/breastfeed/</a>  above is working now so Staff are at work. :)
</p>
]]></description>
					</item>
		<item>
			<title>curiouswoman on "My blog does not appear in WordPress search"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-does-not-appear-in-wordpress-search#post-418113</link>
			<pubDate>Tue, 05 Jan 2010 01:07:59 +0000</pubDate>
			<dc:creator>curiouswoman</dc:creator>
			<guid isPermaLink="false">418113@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for your help timethief.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "My blog does not appear in WordPress search"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-does-not-appear-in-wordpress-search#post-418111</link>
			<pubDate>Tue, 05 Jan 2010 01:04:34 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">418111@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@curiouswoman<br />
I clicked all the tags and the category and you are correct your blog has a technical problem - none of the links were to the global tagging pages. Volunteers can't apply technical fixes. You need Staff help <a href="http://en.support.wordpress.com/contact/" rel="nofollow">http://en.support.wordpress.com/contact/</a>
</p>
]]></description>
					</item>
		<item>
			<title>curiouswoman on "My blog does not appear in WordPress search"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-does-not-appear-in-wordpress-search#post-418106</link>
			<pubDate>Tue, 05 Jan 2010 00:49:08 +0000</pubDate>
			<dc:creator>curiouswoman</dc:creator>
			<guid isPermaLink="false">418106@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have a similar problem as the OP.  </p>
<p>And it doesn't appear that my blog is appearing on the global tags page either.  e.g. I had a post on breastfeeding</p>
<p><a href="http://confessionsofacuriousmind.wordpress.com/2010/01/04/the-last-breastfeed/" rel="nofollow">http://confessionsofacuriousmind.wordpress.com/2010/01/04/the-last-breastfeed/</a></p>
<p>And it didn't come up there<br />
<a href="http://en.wordpress.com/tag/breastfeed/" rel="nofollow">http://en.wordpress.com/tag/breastfeed/</a></p>
<p>With the WordPress.com search page, will all posts come up in the "Show the Most Recent" option?  My blog is only new so it may take a while, I'd like to know.
</p>
]]></description>
					</item>

	</channel>
</rss>
